TF-4269 Integrate Sentry into iOS NSE and automate dSYM upload in CI

This commit is contained in:
dab246
2026-04-21 11:51:36 +07:00
parent 4505c50302
commit bab9d4f24c
17 changed files with 412 additions and 18 deletions
+12
View File
@@ -38,6 +38,18 @@ target 'Runner' do
end
end
target 'TwakeMailNSE' do
use_frameworks!
# Must use HybridSDK subspec at the same version as sentry_flutter requires.
# sentry_flutter 9.8.0 depends on Sentry/HybridSDK (= 8.56.2).
# Using plain `pod 'Sentry'` (Core) causes a version conflict and missing PrivateSentrySDKOnly errors.
#
# UPGRADE NOTE: When bumping sentry_flutter, update this version to match the new
# Sentry/HybridSDK constraint declared in Podfile.lock under DEPENDENCIES.
# Verify with: grep 'Sentry/HybridSDK' ios/Podfile.lock
pod 'Sentry/HybridSDK', '8.56.2'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)