firebase / flutterfire

🔥 A collection of Firebase plugins for Flutter apps.
https://firebase.google.com/docs/flutter/setup
BSD 3-Clause "New" or "Revised" License
8.69k stars 3.97k forks source link

[firebase_messaging] IOS Notifications dont work #1677

Closed mariogorki94 closed 3 years ago

mariogorki94 commented 4 years ago

I am at the lates firebase messaging version 6.0.9 On Android all notifications work properly, on IOS on the other side Notifications are received but not handled by the firebase plugin and passed to the dart side. On simulator when the app is open i receive notifications, when backgrounded i dont receive (which is normal simulators dont support push notifications). On real device I receive push notifications in the tray when is backgrounded but they are never passed to the dart side, on foreground i dont receive anything...

FLUTTER DOCTOR

[✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Mac OS X 10.15.2 19C57, locale en-BG)
    • Flutter version 1.12.13+hotfix.5 at /Users/idev/Desktop/Dev/flutter
    • Framework revision 27321ebbad (7 days ago), 2019-12-10 18:15:01 -0800
    • Engine revision 2994f7e1e6
    • Dart version 2.7.0

[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
    • Android SDK at /Users/idev/Library/Android/sdk
    • Android NDK location not configured (optional; useful for native profiling support)
    • Platform android-29, build-tools 29.0.2
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 11.3)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 11.3, Build version 11C29
    • CocoaPods version 1.8.4

[✓] Android Studio (version 3.5)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 42.1.1
    • Dart plugin version 191.8593
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)

[✓] Connected device (1 available)
    • iPad • e39323003745f3c37405289177fc2f7ad110e30d • ios • iOS 12.4.3

• No issues found!
ThinkDigitalSoftware commented 4 years ago

When you say you don't receive anything, do you mean that no notification is delivered to the tray or that the onMessage callback doesn't run? If it's that no notification is delivered to the tray, that's normal. It's not supposed to, but the onMessage callback should run.

mariogorki94 commented 4 years ago

I mean the onMessage, onLaunch, onResume, callbacks run only on simulator. Not on real device

OliverNarramore commented 4 years ago

I'm also experiencing this issue.

iapicca commented 4 years ago

Hi @mariogorki94 can you please provide your flutter run --verbose? Thank you

ninnepinne commented 4 years ago

@iapicca Could you pretty please with suger on top escalate this and related issues. The state of this plugin is unusable for iOS. There are like 20 related and recently opened issues for the same(ish) thing. The documentation is flawed (a fix to even get it running is coming in 6.0.10) and the code seems to be non working for iOS. A lot of people (and me) are blocked by this issue. Thank you!

ninnepinne commented 4 years ago

@mariogorki94 Are you sure you don't get onLaunch if the app is in killed state? I do, otherwise the same.

The data comes in a different format for iOS so make sure to print the raw output of the onMessage etc to verify what you get (if you get any data). Since it is a callback from a plugin it fails silently if for example the parsing fails.

see https://github.com/FirebaseExtended/flutterfire/issues/1041#issuecomment-566565088

mariogorki94 commented 4 years ago

Here is my implementation of the plugin

THE DART SIDE

`class NotificationBloc { FirebaseMessaging _fm;

BehaviorSubject<List<n.Notification>> _notifications = BehaviorSubject.seeded([]);

StreamSubscription _userSub; StreamSubscription _tkSub;

ValueObservable<List<n.Notification>> get notifications => _notifications.stream;

Observable get unreadCount => notifications.map((d) => d.where((n) => !n.isRead).length);

NotificationBloc() { _configureFirebase(); }

void dispose() { _tkSub?.cancel(); _notifications.close(); }

Future onFirebaseMessageReceived( Map<String, dynamic> notification) async { print('FOREGROUND HANDLER : $notification');

final notif = n.Notification.fromFirebase(notification);
final v = _notifications.value..add(notif);
_notifications.add(v);

}

Future _emptyHandler( Map<String, dynamic> notification) async { print('EMPTY HANDLER : $notification'); }

void _configureFirebase() { ///if on web don`t configure if (kIsWeb) return;

_fm = FirebaseMessaging();

_fm.requestNotificationPermissions();

_fm.configure(
    onMessage: onFirebaseMessageReceived,
    onBackgroundMessage: Platform.isIOS ? null: _messageHandler,
    onResume: _emptyHandler,
    onLaunch: _emptyHandler);

_tkSub = _fm.onTokenRefresh.listen(_onTokenRefresh);

_fm.requestNotificationPermissions(
    IosNotificationSettings(sound: true, badge: true, alert: true, provisional: true));

}

void _onTokenRefresh(String event) async { print('TOKEN REFRESH: $event'); if (VApp.userBloc.user.value == null) return;

await VApp.driver.notificationRegistration(event);

} }

Future _messageHandler(Map<String, dynamic> notification) async {

print('BACKGROUND HANDLER : $notification');

if (!VApp.isInitialized) await VApp.init();

VApp.notificationBloc.onFirebaseMessageReceived(notification); }`

IOS APPLICATION DELEGATE

@objc class AppDelegate: FlutterAppDelegate { override func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { if #available(iOS 10.0, *) { UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate

}
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)

} }

PUBSPEC.YAML

intl: ^0.16.0 http: ^0.12.0+2 web_socket_channel: ^1.1.0 get_it: ^3.0.1 rxdart: ^0.22.3 provider: ^3.2.0 tuple: ^1.0.3 shared_preferences: ^0.5.4+6 flutter_native_timezone: ^1.0.4 flutter_translate: ^1.4.0+2 flutter_keyboard_visibility: ^0.7.0 firebase_messaging: ^6.0.9 url_launcher: ^5.2.7 after_layout: ^1.0.7+2 flutter_form_builder: ^3.6.1 simple_animations: ^1.3.3 badges: ^1.1.0 pull_to_refresh: ^1.5.7 flutter_calendar_carousel: ^1.4.5 line_icons: ^0.2.0 cupertino_icons: ^0.1.2 iban: ^0.1.1 auto_animated: any

FLUTTER RUN --VERBOSE

` DSTROOT = /tmp/Runner.dst DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain DWARF_DSYM_FILE_NAME = Runner.app.dSYM DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO DWARF_DSYM_FOLDER_PATH = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos EFFECTIVE_PLATFORM_NAME = -iphoneos EMBEDDED_CONTENT_CONTAINS_SWIFT = NO EMBEDDED_PROFILE_NAME = embedded.mobileprovision EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO ENABLE_BITCODE = NO ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES ENABLE_HARDENED_RUNTIME = NO ENABLE_HEADER_DEPENDENCIES = YES ENABLE_ON_DEMAND_RESOURCES = YES ENABLE_STRICT_OBJC_MSGSEND = YES ENABLE_TESTABILITY = YES ENTITLEMENTS_ALLOWED = YES ENTITLEMENTS_DESTINATION = Signature ENTITLEMENTS_REQUIRED = YES EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = .nib .lproj .framework .gch .xcode .xcassets () .DS_Store CVS .svn .git .hg .pbproj .pbxproj EXECUTABLES_FOLDER_PATH = Runner.app/Executables EXECUTABLE_FOLDER_PATH = Runner.app EXECUTABLE_NAME = Runner EXECUTABLE_PATH = Runner.app/Runner EXPANDED_CODE_SIGN_IDENTITY = EXPANDED_CODE_SIGN_IDENTITY_NAME = EXPANDED_PROVISIONING_PROFILE = FILE_LIST = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/idev/Desktop/Dev/flutter/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/idev/Desktop/Dev/flutter FLUTTER_SUPPRESS_ANALYTICS = true FLUTTER_TARGET = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCore" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseInstanceID" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseMessaging" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransport" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransportCCTSuppor t" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleUtilities" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/Protobuf" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebase_core" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebase_messaging" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_device_locale" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_keyboard_visibility" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_native_timezone" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/nanopb" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/shared_preferences" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/url_launcher" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/../Flutter" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCore" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseInstanceID" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseMessaging" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransport" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransportCCTSuppor t" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleUtilities" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/Protobuf" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebase_core" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebase_messaging" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_device_locale" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_keyboard_visibility" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_native_timezone" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/nanopb" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/shared_preferences" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/url_launcher" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/../Flutter" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/GoogleAppMeasurement/Frameworks" /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Flutter FRAMEWORK_VERSION = A FULL_PRODUCT_NAME = Runner.app GCC3_VERSION = 3.3 GCC_C_LANGUAGE_STANDARD = gnu99 GCC_DYNAMIC_NO_PIC = NO GCC_INLINES_ARE_PRIVATE_EXTERN = YES GCC_NO_COMMON_BLOCKS = YES GCC_OPTIMIZATION_LEVEL = 0 GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 COCOAPODS=1 DEBUG=1 COCOAPODS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 COCOAPODS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 GCC_SYMBOLS_PRIVATE_EXTERN = NO GCC_THUMB_SUPPORT = YES GCC_TREAT_WARNINGS_AS_ERRORS = NO GCC_VERSION = com.apple.compilers.llvm.clang.1_0 GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0 GCC_WARN_64_TO_32_BIT_CONVERSION = YES GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR GCC_WARN_UNDECLARED_SELECTOR = YES GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE GCC_WARN_UNUSED_FUNCTION = YES GCC_WARN_UNUSED_VARIABLE = YES GENERATE_MASTER_OBJECT_FILE = NO GENERATE_PKGINFO_FILE = YES GENERATE_PROFILING_CODE = NO GENERATE_TEXT_BASED_STUBS = NO GID = 20 GROUP = staff HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES HEADERMAP_INCLUDES_PROJECT_HEADERS = YES HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES HEADERMAP_USES_VFS = NO HEADER_SEARCH_PATHS = "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.fr amework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/Fire baseCoreDiagnostics.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseI nstanceID.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMe ssaging.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDa taTransport.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransportCCTSuppor t/GoogleDataTransportCCTSupport.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilit ies.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/Protobuf/protobuf.framework/ Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebase_core/firebase_core. framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebasemessaging/firebase messaging.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_device_locale/flutte r_device_locale.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_keyboard_visibility/ flutter_keyboard_visibility.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_native_timezone/flut ter_native_timezone.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Head ers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/shared_preferences/shared_pr eferences.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/url_launcher/url_launcher.fr amework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/Firebase" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/FirebaseAnalyticsInterop" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsIntero p" /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Firebase/CoreOnly/Sources "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.fr amework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/Fire baseCoreDiagnostics.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseI nstanceID.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMe ssaging.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDa taTransport.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransportCCTSuppor t/GoogleDataTransportCCTSupport.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilit ies.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/Protobuf/protobuf.framework/ Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebase_core/firebase_core. framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebasemessaging/firebase messaging.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_device_locale/flutte r_device_locale.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_keyboard_visibility/ flutter_keyboard_visibility.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_native_timezone/flut ter_native_timezone.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Head ers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/shared_preferences/shared_pr eferences.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/url_launcher/url_launcher.fr amework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/Firebase" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/FirebaseAnalyticsInterop" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsIntero p" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.fr amework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseCoreDiagnostics/Fire baseCoreDiagnostics.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseInstanceID/FirebaseI nstanceID.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/FirebaseMessaging/FirebaseMe ssaging.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransport/GoogleDa taTransport.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleDataTransportCCTSuppor t/GoogleDataTransportCCTSupport.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilit ies.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/Protobuf/protobuf.framework/ Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebase_core/firebase_core. framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/firebasemessaging/firebase messaging.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_device_locale/flutte r_device_locale.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_keyboard_visibility/ flutter_keyboard_visibility.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/flutter_native_timezone/flut ter_native_timezone.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Head ers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/shared_preferences/shared_pr eferences.framework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/url_launcher/url_launcher.fr amework/Headers" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/Firebase" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/FirebaseAnalyticsInterop" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Headers/Public/FirebaseCoreDiagnosticsIntero p" /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Firebase/CoreOnly/Sources /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods/Firebase/CoreOnly/Sources HIDE_BITCODE_SYMBOLS = YES HOME = /Users/idev ICONV = /usr/bin/iconv INFOPLIST_EXPAND_BUILD_SETTINGS = YES INFOPLIST_FILE = Runner/Info.plist INFOPLIST_OUTPUT_FORMAT = binary INFOPLIST_PATH = Runner.app/Info.plist INFOPLIST_PREPROCESS = NO INFOSTRINGS_PATH = Runner.app/en.lproj/InfoPlist.strings INLINE_PRIVATE_FRAMEWORKS = NO INSTALLHDRS_COPY_PHASE = NO INSTALLHDRS_SCRIPT_PHASE = NO INSTALL_DIR = /tmp/Runner.dst/Applications INSTALL_GROUP = staff INSTALL_MODE_FLAG = u+w,go-w,a+rX INSTALL_OWNER = idev INSTALL_PATH = /Applications INSTALL_ROOT = /tmp/Runner.dst IPHONEOS_DEPLOYMENT_TARGET = 8.0 JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8 JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub JAVA_ARCHIVE_CLASSES = YES JAVA_ARCHIVE_TYPE = JAR JAVA_COMPILER = /usr/bin/javac JAVA_FOLDER_PATH = Runner.app/Java JAVA_FRAMEWORK_RESOURCES_DIRS = Resources JAVA_JAR_FLAGS = cv JAVA_SOURCE_SUBDIR = . JAVA_USE_DEPENDENCIES = YES JAVA_ZIP_FLAGS = -urg JIKES_DEFAULT_FLAGS = +E +OLDCSO KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow KEEP_PRIVATE_EXTERNS = NO LD_DEPENDENCY_INFO_FILE = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat LD_GENERATE_MAP_FILE = NO LD_MAP_FILE_PATH = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt LD_NO_PIE = NO LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer LEX = lex LIBRARY_DEXT_INSTALL_PATH = /Library/DriverExtensions LIBRARY_FLAG_NOSPACE = YES LIBRARY_FLAG_PREFIX = -l LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions LIBRARY_SEARCH_PATHS = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Flutter LINKER_DISPLAYS_MANGLED_NAMES = NO LINK_FILE_LIST_normal_arm64 = LINK_WITH_STANDARD_LIBRARIES = YES LLVM_TARGET_TRIPLE_OS_VERSION = ios8.0 LLVM_TARGET_TRIPLE_VENDOR = apple LOCALIZABLE_CONTENT_DIR = LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/en.lproj LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFCopyLocalizedString LOCALIZED_STRING_SWIFTUI_SUPPORT = YES LOCAL_ADMIN_APPS_DIR = /Applications/Utilities LOCAL_APPS_DIR = /Applications LOCAL_DEVELOPER_DIR = /Library/Developer LOCAL_LIBRARY_DIR = /Library LOCROOT = LOCSYMROOT = MACH_O_TYPE = mh_execute MAC_OS_X_PRODUCT_BUILD_VERSION = 19C57 MAC_OS_X_VERSION_ACTUAL = 101502 MAC_OS_X_VERSION_MAJOR = 101500 MAC_OS_X_VERSION_MINOR = 1502 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/Runner.app MODULES_FOLDER_PATH = Runner.app/Modules MODULE_CACHE_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/ModuleCache.noindex MTL_ENABLE_DEBUG_INFO = YES NATIVE_ARCH = armv7 NATIVE_ARCH_32_BIT = i386 NATIVE_ARCH_64_BIT = x86_64 NATIVE_ARCH_ACTUAL = x86_64 NO_COMMON = YES OBJECT_FILE_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/Objects-normal OBJROOT = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex ONLY_ACTIVE_ARCH = YES OS = MACOS OSAC = /usr/bin/osacompile OTHER_LDFLAGS = -ObjC -l"c++" -l"sqlite3" -l"z" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseInstanceID" -framework "FirebaseMessaging" -framework "Flutter" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleDataTransport" -framework "GoogleDataTransportCCTSupport" -framework "GoogleUtilities" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "firebase_core" -framework "firebase_messaging" -framework "flutter_device_locale" -framework "flutter_keyboard_visibility" -framework "flutter_native_timezone" -framework "nanopb" -framework "protobuf" -framework "shared_preferences" -framework "url_launcher" -weak_framework "UserNotifications" -ObjC -l"c++" -l"sqlite3" -l"z" -framework "FIRAnalyticsConnector" -framework "FirebaseAnalytics" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseInstanceID" -framework "FirebaseMessaging" -framework "Flutter" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "GoogleDataTransport" -framework "GoogleDataTransportCCTSupport" -framework "GoogleUtilities" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "firebase_core" -framework "firebase_messaging" -framework "flutter_device_locale" -framework "flutter_keyboard_visibility" -framework "flutter_native_timezone" -framework "nanopb" -framework "protobuf" -framework "shared_preferences" -framework "url_launcher" -weak_framework "UserNotifications" OTHER_SWIFT_FLAGS = -D COCOAPODS -D COCOAPODS PACKAGE_TYPE = com.apple.package-type.wrapper.application PASCAL_STRINGS = YES PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/idev/Desktop /Dev/flutter/bin PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform PLATFORM_DISPLAY_NAME = iOS PLATFORM_NAME = iphoneos PLATFORM_PREFERRED_ARCH = arm64 PLATFORM_PRODUCT_BUILD_VERSION = 17B102 PLIST_FILE_OUTPUT_FORMAT = binary PLUGINS_FOLDER_PATH = Runner.app/PlugIns PODS_BUILD_DIR = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios PODS_CONFIGURATION_BUILD_DIR = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos PODS_PODFILE_DIR_PATH = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/. PODS_ROOT = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Pods PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES PRECOMP_DESTINATION_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.vertinity.vertipay PRODUCT_BUNDLE_PACKAGE_TYPE = APPL PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/DerivedSources PROJECT_DIR = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios PROJECT_FILE_PATH = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build PROJECT_TEMP_ROOT = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex PROVISIONING_PROFILE_REQUIRED = YES PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES REMOVE_CVS_FROM_RESOURCES = YES REMOVE_GIT_FROM_RESOURCES = YES REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES REMOVE_HG_FROM_RESOURCES = YES REMOVE_SVN_FROM_RESOURCES = YES RESOURCE_RULES_REQUIRED = YES REZ_COLLECTOR_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO SCRIPTS_FOLDER_PATH = Runner.app/Scripts SCRIPT_OUTPUT_STREAM_FILE = /var/folders/2h/qttsnxv9589flm85z3kqrf1r0000gn/T/flutter_build_log_pipe.uIFkrv/pipe_to_stdout SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk SDK_DIR_iphoneos13_2 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk SDK_NAME = iphoneos13.2 SDK_NAMES = iphoneos13.2 SDK_PRODUCT_BUILD_VERSION = 17B102 SDK_VERSION = 13.2 SDK_VERSION_ACTUAL = 130200 SDK_VERSION_MAJOR = 130000 SDK_VERSION_MINOR = 200 SED = /usr/bin/sed SEPARATE_STRIP = NO SEPARATE_SYMBOL_EDIT = NO SET_DIR_MODE_OWNER_GROUP = YES SET_FILE_MODE_OWNER_GROUP = NO SHALLOW_BUNDLE = YES SHARED_DERIVED_FILE_DIR = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Pre compiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios SRCROOT = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/ios STRINGS_FILE_OUTPUT_ENCODING = binary STRIP_BITCODE_FROM_COPIED_FILES = YES STRIP_INSTALLED_PRODUCT = YES STRIP_STYLE = all STRIP_SWIFT_SYMBOLS = YES SUPPORTED_DEVICE_FAMILIES = 1,2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos SUPPORTS_MACCATALYST = NO SUPPORTS_TEXT_BASED_API = NO SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h SWIFT_OPTIMIZATION_LEVEL = -Onone SWIFT_PLATFORM_TARGET_PREFIX = ios SWIFT_VERSION = 4.0 SYMROOT = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Products SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities SYSTEM_APPS_DIR = /Applications SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices SYSTEM_DEMOS_DIR = /Applications/Extras SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities SYSTEM_DEXT_INSTALL_PATH = /System/Library/DriverExtensions SYSTEM_DOCUMENTATION_DIR = /Library/Documentation SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions SYSTEM_LIBRARY_DIR = /System/Library TAPI_VERIFY_MODE = ErrorsOnly TARGETED_DEVICE_FAMILY = 1,2 TARGETNAME = Runner TARGET_BUILD_DIR = /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/Debug-iphoneos TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build TEMP_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build TEMP_FILES_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build TEMP_FILE_DIR = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex/Run ner.build/Debug-iphoneos/Runner.build TEMP_ROOT = /Users/idev/Library/Developer/Xcode/DerivedData/Runner-cmxzxhexqupnvseznpxqkekziitq/Build/Intermediates.noindex TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TRACK_WIDGET_CREATION = true TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 501 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = idev USER_APPS_DIR = /Users/idev/Applications USER_LIBRARY_DIR = /Users/idev/Library USE_DYNAMIC_NO_PIC = YES USE_HEADERMAP = YES USE_HEADER_SYMLINKS = NO USE_LLVM_TARGET_TRIPLES = YES USE_LLVM_TARGET_TRIPLES_FOR_CLANG = YES USE_LLVM_TARGET_TRIPLES_FOR_LD = YES USE_LLVM_TARGET_TRIPLES_FOR_TAPI = YES USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES VALIDATE_PRODUCT = NO VALIDATE_WORKSPACE = NO VALID_ARCHS = arm64 arm64e armv7 armv7s VERBOSE_PBXCP = NO VERBOSE_SCRIPT_LOGGING = YES VERSIONING_SYSTEM = apple-generic VERSIONPLIST_PATH = Runner.app/version.plist VERSION_INFO_BUILDER = idev VERSION_INFO_FILE = Runner_vers.c VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1" WRAPPER_EXTENSION = app WRAPPER_NAME = Runner.app WRAPPER_SUFFIX = .app WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 11C29 XCODE_VERSION_ACTUAL = 1130 XCODE_VERSION_MAJOR = 1100 XCODE_VERSION_MINOR = 1130 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = arm64 variant = normal

                2019-12-20 22:07:09.767 xcodebuild[82729:692921]  DTDeviceKit: deviceType from b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49
                was NULL
                2019-12-20 22:07:09.813 xcodebuild[82729:692921]  DTDeviceKit: deviceType from b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49
                was NULL

[ +795 ms] Installing and launching... [ ] Debugging is enabled, connecting to observatory [ +4 ms] executing: /Users/idev/Desktop/Dev/flutter/bin/cache/artifacts/ios-deploy/ios-deploy --id b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49 --bundle build/ios/iphoneos/Runner.app --no-wifi --justlaunch --args --enable-dart-profiling --enable-checked-mode --verify-entry-points [ +46 ms] [....] Waiting for iOS device to be connected [ +15 ms] [....] Using b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49 (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Tania’s iPhone'. [ ] ------ Install phase ------ [ ] [ 0%] Found b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49 (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Tania’s iPhone' connected through USB, beginning install [ +338 ms] [ 5%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/META-INF/ to device [ ] [ 5%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/META-INF/com.apple.ZipMetadata.plist to device [ ] [ 5%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/_CodeSignature/ to device [ ] [ 5%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/_CodeSignature/CodeResources to device [ ] [ 5%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon29x29.png to device [ ] [ 5%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon60x60@2x.png to device [ ] [ 6%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Runner to device [ +83 ms] [ 6%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon29x29@2x.png to device [ ] [ 6%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon40x40@3x.png to device [ ] [ 7%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Debug.xcconfig to device [ ] [ 7%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon29x29~ipad.png to device [ ] [ 7%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon40x40@2x.png to device [ ] [ 7%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon29x29@3x.png to device [ ] [ 7%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/GoogleService-Info.plist to device [ ] [ 7%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon60x60@3x.png to device [ ] [ 8%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/ to device [ ] [ 8%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/ to device [ ] [ 8%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ -38-t0r.nib/ to device [ ] [ 8%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ -38-t0r.nib/objects-13.0+.nib to device [ ] [ 8%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ -38-t0r.nib/runtime.nib to device [ ] [ 8%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC- Xf-vdC.nib/ to device [ ] [ 9%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC- Xf-vdC.nib/objects-13.0+.nib to device [ ] [ 9%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC- Xf-vdC.nib/runtime.nib to device [ ] [ 9%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist to device [ ] [ 9%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/ to device [ ] [ 9%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-v iew-Ze5-6b-2t3.nib/ to device [ ] [ 9%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-v iew-Ze5-6b-2t3.nib/objects-13.0+.nib to device [ ] [ 10%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-v iew-Ze5-6b-2t3.nib/runtime.nib to device [ ] [ 10%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewContro ller-01J-lp-oVM.nib/ to device [ ] [ 10%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewContro ller-01J-lp-oVM.nib/objects-13.0+.nib to device [ ] [ 10%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewContro ller-01J-lp-oVM.nib/runtime.nib to device [ ] [ 10%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist to device [ +1 ms] [ 10%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Assets.car to device [ ] [ 11%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppFrameworkInfo.plist to device [ ] [ 11%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png to device [ ] [ 11%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png to device [ ] [ 11%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png to device [ ] [ 11%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png to device [ ] [ 12%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon40x40~ipad.png to device [ ] [ 12%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/ to device [ ] [ 12%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/protobuf.framework/ to device [ ] [ 12%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/protobuf.framework/_CodeSignature/ to device [ ] [ 12%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/protobuf.framework/_CodeSignature/Cod eResources to device [ ] [ 12%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/protobuf.framework/protobuf to device [ +52 ms] [ 13%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/protobuf.framework/Info.plist to device [ +1 ms] [ 13%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/libswiftObjectiveC.dylib to device [ +12 ms] [ 13%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_keyboard_visibility.framework / to device [ ] [ 13%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_keyboard_visibility.framework /_CodeSignature/ to device [ ] [ 14%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_keyboard_visibility.framework /_CodeSignature/CodeResources to device [ ] [ 14%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_keyboard_visibility.framework /flutter_keyboard_visibility to device [ +5 ms] [ 14%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_keyboard_visibility.framework /Info.plist to device [ ] [ 14%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/libswiftCore.dylib to device [ +599 ms] [ 19%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreGraphics.dylib to device [ +23 ms] [ 19%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/libswiftDispatch.dylib to device [ +94 ms] [ 20%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/GoogleUtilities.framework/ to device [ ] [ 20%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/GoogleUtilities.framework/_CodeSignat ure/ to device [ ] [ 20%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/GoogleUtilities.framework/_CodeSignat ure/CodeResources to device [ ] [ 20%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/GoogleUtilities.framework/GoogleUtili ties to device [ +6 ms] [ 20%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/GoogleUtilities.framework/Info.plist to device [ ] [ 20%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/libswiftCoreFoundation.dylib to device [ +7 ms] [ 21%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/ to device [ +1 ms] [ 21%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/ to device [ ] [ 21%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/Code Resources to device [ ] [ 21%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat to device [ +23 ms] [ 22%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter to device [ +811 ms] [ 28%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist to device [ ] [ 28%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_native_timezone.framework/ to device [ ] [ 28%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_native_timezone.framework/_Co deSignature/ to device [ ] [ 28%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_native_timezone.framework/_Co deSignature/CodeResources to device [ ] [ 28%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_native_timezone.framework/flu tter_native_timezone to device [ ] [ 29%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_native_timezone.framework/Inf o.plist to device [ ] [ 29%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/ to device [ ] [ 29%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/ to device [ ] [ 29%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeReso urces to device [ ] [ 29%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/App to device [ ] [ 30%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/ to device [ ] [ 30%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/LICENSE to device [ +79 ms] [ 30%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/vm_snaps hot_data to device [ ] [ 30%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutterassets/isolate snapshot_data to device [ +134 ms] [ 31%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/AssetMan ifest.json to device [ ] [ 31%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/kernel_b lob.bin to device [ +936 ms] [ 38%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/FontMani fest.json to device [ ] [ 38%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages / to device [ ] [ 38%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages /line_icons/ to device [ ] [ 39%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages /line_icons/lib/ to device [ ] [ 39%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages /line_icons/lib/assets/ to device [ ] [ 39%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages /line_icons/lib/assets/fonts/ to device [ ] [ 39%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages /line_icons/lib/assets/fonts/LineIcons.ttf to device [ ] [ 39%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages /cupertino_icons/ to device [ ] [ 40%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages /cupertino_icons/assets/ to device [ ] [ 40%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/packages /cupertino_icons/assets/CupertinoIcons.ttf to device [ +1 ms] [ 40%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/fonts/ to device [ ] [ 40%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/fonts/Ma terialIcons-Regular.ttf to device [ +1 ms] [ 40%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/ to device [ ] [ 40%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/r es/ to device [ ] [ 41%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/r es/loader.png to device [ ] [ 41%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/r es/logo_black.png to device [ +1 ms] [ 41%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/r es/bg_unauthorized.jpg to device [ +83 ms] [ 41%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/r es/logo_white.png to device [ ] [ 41%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/r es/bg.jpg to device [ +1 ms] [ 42%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/l ang/ to device [ ] [ 42%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/l ang/en.json to device [ ] [ 42%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/flutter_assets/assets/l ang/bg.json to device [ ] [ 42%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/App.framework/Info.plist to device [ ] [ 42%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/libswiftDarwin.dylib to device [ +17 ms] [ 43%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_device_locale.framework/ to device [ ] [ 43%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_device_locale.framework/_Code Signature/ to device [ ] [ 43%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_device_locale.framework/_Code Signature/CodeResources to device [ ] [ 43%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_device_locale.framework/flutt er_device_locale to device [ +2 ms] [ 43%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/flutter_device_locale.framework/Info. plist to device [ ] [ 43%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/nanopb.framework/ to device [ ] [ 44%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/nanopb.framework/_CodeSignature/ to device [ ] [ 44%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/nanopb.framework/_CodeSignature/CodeR esources to device [ ] [ 44%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/nanopb.framework/nanopb to device [ ] [ 44%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/nanopb.framework/Info.plist to device [ ] [ 44%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/shared_preferences.framework/ to device [ ] [ 44%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/shared_preferences.framework/_CodeSig nature/ to device [ ] [ 45%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/shared_preferences.framework/_CodeSig nature/CodeResources to device [ ] [ 45%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/shared_preferences.framework/shared_p references to device [ ] [ 45%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/shared_preferences.framework/Info.pli st to device [ ] [ 45%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/url_launcher.framework/ to device [ ] [ 45%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/url_launcher.framework/_CodeSignature / to device [ ] [ 46%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/url_launcher.framework/_CodeSignature /CodeResources to device [ ] [ 46%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/url_launcher.framework/url_launcher to device [ +63 ms] [ 46%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/url_launcher.framework/Info.plist to device [ ] [ 46%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Frameworks/libswiftFoundation.dylib to device [ +298 ms] [ 48%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon20x20~ipad.png to device [ ] [ 49%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/embedded.mobileprovision to device [ ] [ 49%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png to device [ ] [ 49%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/Info.plist to device [ ] [ 49%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/PkgInfo to device [ ] [ 49%] Copying /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app/AppIcon76x76~ipad.png to device [ +302 ms] [ 52%] CreatingStagingDirectory [ ] [ 57%] ExtractingPackage [ ] [ 60%] InspectingPackage [ +7 ms] [ 60%] TakingInstallLock [ +3 ms] [ 65%] PreflightingApplication [ +46 ms] [ 65%] InstallingEmbeddedProfile [ +11 ms] [ 70%] VerifyingApplication [+3251 ms] [ 75%] CreatingContainer [ +10 ms] [ 80%] InstallingApplication [ +11 ms] [ 85%] PostflightingApplication [ +8 ms] [ 90%] SandboxingApplication [ +8 ms] [ 95%] GeneratingApplicationMap [ +56 ms] [100%] Installed package build/ios/iphoneos/Runner.app [ +349 ms] ------ Debug phase ------ [ ] Starting debug of b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49 (N71mAP, iPhone 6s, iphoneos, arm64) a.k.a. 'Tania’s iPhone' connected through USB... [+1151 ms] [ 0%] Looking up developer disk image [ +20 ms] [ 95%] Developer disk image mounted successfully [ +386 ms] [100%] Connecting to remote debug server [ ] ------------------------- [ +490 ms] (lldb) command source -s 0 '/tmp/F6D8D043-ACE6-4B49-859A-45007C238D49/fruitstrap-lldb-prep-cmds-b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49' [ ] Executing commands in '/tmp/F6D8D043-ACE6-4B49-859A-45007C238D49/fruitstrap-lldb-prep-cmds-b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49'. [ ] (lldb) platform select remote-ios --sysroot '/Users/idev/Library/Developer/Xcode/iOS DeviceSupport/12.3.1 (16F203)/Symbols' [ ] Platform: remote-ios [ ] Connected: no [ ] SDK Path: "/Users/idev/Library/Developer/Xcode/iOS DeviceSupport/12.3.1 (16F203)/Symbols" [ ] (lldb) target create "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app" [+11082 ms] Current executable set to '/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos/Runner.app' (arm64). [ ] (lldb) script fruitstrap_device_app="/private/var/containers/Bundle/Application/179419BB-A8A1-4CA9-A8B7-5B6B6C69F5CC/Runner.app" [ +489 ms] (lldb) script fruitstrap_connect_url="connect://127.0.0.1:56582" [ ] (lldb) script fruitstrap_output_path="" [ ] (lldb) script fruitstrap_error_path="" [ ] (lldb) target modules search-paths add /usr "/Users/idev/Library/Developer/Xcode/iOS DeviceSupport/12.3.1 (16F203)/Symbols/usr" /System "/Users/idev/Library/Developer/Xcode/iOS DeviceSupport/12.3.1 (16F203)/Symbols/System" "/private/var/containers/Bundle/Application/179419BB-A8A1-4CA9-A8B7-5B6B6C69F5CC" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos" "/var/containers/Bundle/Application/179419BB-A8A1-4CA9-A8B7-5B6B6C69F5CC" "/Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/build/ios/iphoneos" /Developer "/Users/idev/Library/Developer/Xcode/iOS DeviceSupport/12.3.1 (16F203)/Symbols/Developer" [ +32 ms] (lldb) command script import "/tmp/F6D8D043-ACE6-4B49-859A-45007C238D49/fruitstrap_b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49.py" [ +9 ms] (lldb) command script add -f fruitstrap_b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49.connect_command connect [ ] (lldb) command script add -s asynchronous -f fruitstrap_b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49.run_command run [ ] (lldb) command script add -s asynchronous -f fruitstrap_b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49.autoexit_command autoexit [ ] (lldb) command script add -s asynchronous -f fruitstrap_b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49.safequit_command safequit [ ] (lldb) connect [ +56 ms] (lldb) run [+1851 ms] success [ ] (lldb) safequit [ +143 ms] Process 379 detached [ +65 ms] Application launched on the device. Waiting for observatory port. [ +4 ms] Checking for advertised Dart observatories... [ +627 ms] Configuring the default Firebase app... [ +214 ms] Configured the default Firebase app __FIRAPP_DEFAULT. [+2591 ms] flutter: TOKEN REFRESH: null [ ] flutter: TOKEN REFRESH: null [ ] flutter: TOKEN REFRESH: null [ +169 ms] flutter: TOKEN REFRESH: dhT45P9fDDY:APA91bGXOG6aA8e9FFhhRm6bn680kqrJIGqTgx5mYeHFT0Y4EDg0mZZxviQnDp5-p3J-Qj0lVVbYuVE8SXXcM_tE7xdGuw9j_gea_HBhiYJvpOifTigEwyyEZikdCJT VWia97tO1k-lD [+1420 ms] Checking for available port on com.vertinity.vertipay._dartobservatory._tcp.local [ +2 ms] Checking for authentication code for com.vertinity.vertipay._dartobservatory._tcp.local [ +3 ms] Attempting to forward device port 49930 to host port 1024 [ ] executing: /Users/idev/Desktop/Dev/flutter/bin/cache/artifacts/usbmuxd/iproxy 1024 49930 b0ecbb0c51ae3c562e503200cd8e122f9ae5bc49 [+1037 ms] Forwarded port ForwardedPort HOST:1024 to DEVICE:49930 [ +5 ms] Installing and launching... (completed in 29.7s) [ +12 ms] Connecting to service protocol: http://127.0.0.1:1024/t1_Hl0nXsY0=/ [ +208 ms] Successfully connected to service protocol: http://127.0.0.1:1024/t1_Hl0nXsY0=/ [ +4 ms] Sending to VM service: getVM({}) [ +6 ms] Result: {type: VM, name: vm, architectureBits: 64, hostCPU: Unknown, operatingSystem: ios, targetCPU: arm64, version: 2.7.0 (Mon Dec 2 20:10:59 2019 +0100) on "ios_arm64", _profilerMode: VM, nativeZoneMemoryUsage: 0, pid: 379, startTime: 1576872455345, ... [ +6 ms] Sending to VM service: getIsolate({isolateId: isolates/3596153480380315}) [ +7 ms] Sending to VM service: _flutter.listViews({}) [ +47 ms] Result: {type: Isolate, id: isolates/3596153480380315, name: main, number: 3596153480380315, _originNumber: 3596153480380315, startTime: 1576872455579, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 5, avgCollectionPeriodMillis... [ +21 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x118825e20, isolate: {type: @Isolate, fixedId: true, id: isolates/3596153480380315, name: main.dart$main-3596153480380315, number: 3596153480380315}}]} [ +14 ms] DevFS: Creating new filesystem on the device (null) [ +1 ms] Sending to VM service: _createDevFS({fsName: verti_pay}) [ +21 ms] Result: {type: FileSystem, name: verti_pay, uri: file:///private/var/mobile/Containers/Data/Application/CC45B6D3-6056-4679-AFF9-550DC1D7F504/tmp/verti_payZvUdUV/verti_pay/} [ ] DevFS: Created new filesystem on the device (file:///private/var/mobile/Containers/Data/Application/CC45B6D3-6056-4679-AFF9-550DC1D7F504/tmp/verti_payZvUdUV/verti_pay/) [ +2 ms] Updating assets [ +183 ms] Syncing files to device Tania’s iPhone... [ +1 ms] Scanning asset files [ +3 ms] <- reset [ ] Compiling dart to kernel with 0 updated files [ +10 ms] /Users/idev/Desktop/Dev/flutter/bin/cache/dart-sdk/bin/dart /Users/idev/Desktop/Dev/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/idev/Desktop/Dev/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter -Ddart.developer.causal_async_stacks=true --output-dill /var/folders/2h/qttsnxv9589flm85z3kqrf1r0000gn/T/flutter_tool.u1hcR3/app.dill --packages /Users/idev/Desktop/Work/VertiPay/work/VertiPayApp/verti_pay/.packages -Ddart.vm.profile=false -Ddart.vm.product=false --bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-inst ructions --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root [ +6 ms] <- compile package:verti_pay/main.dart [ +510 ms] flutter: Websocket driver: CONNECTED [+10058 ms] Updating files [ +207 ms] DevFS: Sync finished [ ] Syncing files to device Tania’s iPhone... (completed in 10,798ms, longer than expected) [ +1 ms] Synced 1.9MB. [ +2 ms] Sending to VM service: _flutter.listViews({}) [ +3 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x118825e20, isolate: {type: @Isolate, fixedId: true, id: isolates/3596153480380315, name: main.dart$main-3596153480380315, number: 3596153480380315}}]} [ +1 ms] <- accept [ ] Connected to _flutterView/0x118825e20. `

mariogorki94 commented 4 years ago

@iapicca I,ve submitted everything

voznyy commented 4 years ago

I'm also facing this issue. It works only with a simulator, not with a real device. My environment details here

And the only message I see in logs is:

Runner[244:4623] Warning: UNUserNotificationCenter delegate received call to -userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler: but the completion handler was never called.

It shows when I tap on the notification. But I'm not sure if it is somehow connected to the issue.

voznyy commented 4 years ago

https://github.com/MaikuB/flutter_local_notifications/issues/111#issuecomment-500624488

PsyOhm23 commented 4 years ago

@mariogorki94 Are you sure you don't get onLaunch if the app is in killed state? I do, otherwise the same.

The data comes in a different format for iOS so make sure to print the raw output of the onMessage etc to verify what you get (if you get any data). Since it is a callback from a plugin it fails silently if for example the parsing fails.

see #1041 (comment)

I'm facing the same issue with onMessage and onResume Methods, but it works with onLaunch method. Tested on real device.

fpv999 commented 4 years ago

I just discovered, that this solves the issue of onMessage not being called when iOS app is in foreground:


{  
   "data":{  
      "title":"mytitle",
      "body":"mybody",
      "url":"myurl"
   },
   "notification":{  
      "title":"mytitle",
      "body":"mybody",
      "content_available": true         <--- THIS IS REQUIRED
   },
   ...

If notifications contained only "data", then it was arriving, but if notification contained both "data" and "notification" section, but without "content_available".. nothing was called in the app handlers, when app was in the foreground.

acoutts commented 4 years ago

I'm also facing this issue. It works only with a simulator, not with a real device. My environment details here

And the only message I see in logs is:

Runner[244:4623] Warning: UNUserNotificationCenter delegate received call to -userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler: but the completion handler was never called. It shows when I tap on the notification. But I'm not sure if it is somehow connected to the issue.

To fix this error, remove this from your AppDelegate.swift file:

                if #available(iOS 10.0, *) {
                    UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
                }
NarHakobyan commented 4 years ago

Same

w4p commented 4 years ago

Solved.

Facing the same issue on real device. But the reason on my case was message['notification'] key, that is not exists on real device....

The notification data can be found at message['aps'] key on real device iOS 13.1 (TestFlight).

andreask99 commented 4 years ago

for me I seem to need to call message['aps']['alert']['title'] on a real device iphone 7+

Chimba123 commented 4 years ago

for me I seem to need to call message['aps']['alert']['title'] on a real device iphone 7+

same here I am running iphone X with ios 14 it's like the data structure for the notification is different on a device and for a simulator

Chimba123 commented 4 years ago

for me I seem to need to call message['aps']['alert']['title'] on a real device iphone 7+

but it stops working when the App is in release mode

Salakar commented 3 years ago

Hey all 👋

As part of our roadmap (#2582) we've just shipped a complete rework of the firebase_messaging plugin that aims to solve this and many other issues. We now have detailed integration with APNs documentation and server examples for sending FCM messages with the correct payloads.

If you can, please try out the dev release (see the migration guide for upgrading and for changes) and if you have any feedback then join in the discussion here.

Given the scope of the rework I'm going to go ahead and close this issue in favor of trying out the latest plugin.

Thanks everyone.