gunschu / jitsi_meet

Initial commit
208 stars 283 forks source link

Breaking ios build #183

Closed adrienthiery closed 3 years ago

adrienthiery commented 3 years ago

Hi there,

Something strange is happening in my flutter app when I add jitsi_meet. It works fine on Android but my build breaks on iOS with the following error :

Warning: Building for device with codesigning disabled. You will have to manually codesign before deploying to device.
Building com.my.app for device (ios-release)...
Running pod install...                                             31.5s
Running Xcode build...
 └─Compiling, linking and signing...                         8.2s
Xcode build done.                                           186.2s
Failed to build iOS app
Error output from Xcode build:
↳
    ** BUILD FAILED **
Xcode's output:
↳
    /.../ios/Runner/AppDelegate.swift:2:8: error: no such module 'FBSDKCoreKit'
    import FBSDKCoreKit
           ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Firebase.h"
            ^
    /.../ios/Runner/AppDelegate.swift:2:8: error: no such module 'FBSDKCoreKit'
    import FBSDKCoreKit
           ^
    <module-includes>:1:9: note: in file included from <module-includes>:1:
    #import "Firebase.h"
            ^
    note: Using new build system
    note: Building targets in parallel
    note: Planning build
    note: Constructing build description

As soon as I remove the package from the project (and the code using the package, of course) it works fine again...

I use flutter build ios --release --no-codesign

Any idea what's happening?

Thanks a bunch

adrienthiery commented 3 years ago

Actually, I think open .xcworkspace and in General-> Deployment Info set Target 11.0 just fixed it 🤔

adrienthiery commented 3 years ago

Actually, I still have another build issue :

Run flutter build ios --release --no-codesign
Warning: Building for device with codesigning disabled. You will have to manually codesign before deploying to device.
Building com.myapp.app for device (ios-release)...
Running pod install...                                              7.5s
Running Xcode build...                                          
Xcode build done.                                           111.0s
Failed to build iOS app
Error output from Xcode build:
↳
    ** BUILD FAILED **

Xcode's output:
↳
    4 warnings generated.
    /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/libwebp/src/enc/backward_references_enc.c:663:12: warning: variable 'best_offset' may be uninitialized when used here [-Wconditional-uninitialized]
              (best_offset << MAX_LENGTH_BITS) | (uint32_t)best_length;
               ^~~~~~~~~~~
    /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/libwebp/src/enc/backward_references_enc.c:595:20: note: initialize the variable 'best_offset' to silence this warning
        int best_offset;
                       ^
                        = 0
    1 warning generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/webview_flutter-1.0.7/ios/Classes/FlutterWebView.m:367:23: warning: 'mediaPlaybackRequiresUserAction' is deprecated: first deprecated in iOS 9.0 [-Wdeprecated-declarations]
            configuration.mediaPlaybackRequiresUserAction = true;
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                          mediaTypesRequiringUserActionForPlayback
    In module 'WebKit' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/webview_flutter-1.0.7/ios/Classes/FlutterWebView.h:6:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebViewConfiguration.h:211:28: note: 'mediaPlaybackRequiresUserAction' has been explicitly marked deprecated here
    @property (nonatomic) BOOL mediaPlaybackRequiresUserAction API_DEPRECATED_WITH_REPLACEMENT("mediaTypesRequiringUserActionForPlayback", ios(8.0, 9.0));
                               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/webview_flutter-1.0.7/ios/Classes/FlutterWebView.m:374:23: warning: 'mediaPlaybackRequiresUserAction' is deprecated: first deprecated in iOS 9.0 [-Wdeprecated-declarations]
            configuration.mediaPlaybackRequiresUserAction = false;
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                          mediaTypesRequiringUserActionForPlayback
    In module 'WebKit' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/webview_flutter-1.0.7/ios/Classes/FlutterWebView.h:6:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebViewConfiguration.h:211:28: note: 'mediaPlaybackRequiresUserAction' has been explicitly marked deprecated here
    @property (nonatomic) BOOL mediaPlaybackRequiresUserAction API_DEPRECATED_WITH_REPLACEMENT("mediaTypesRequiringUserActionForPlayback", ios(8.0, 9.0));
                               ^
    2 warnings generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/PhotoPermissionStrategy.m:39:13: warning: enumeration value 'PHAuthorizationStatusLimited' not handled in switch [-Wswitch]
        switch (authorizationStatus) {
                ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/PhotoPermissionStrategy.m:39:13: note: add missing switch cases
        switch (authorizationStatus) {
                ^
    1 warning generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/PermissionManager.m:69:59: warning: 'openURL:' is deprecated: first deprecated in iOS 10.0 [-Wdeprecated-declarations]
            BOOL success = [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
                                                              ^~~~~~~
                                                              openURL:options:completionHandler:
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:123:1: note: 'openURL:' has been explicitly marked deprecated here
    - (BOOL)openURL:(NSURL*)url API_DEPRECATED_WITH_REPLACEMENT("openURL:options:completionHandler:", ios(2.0, 10.0)) NS_EXTENSION_UNAVAILABLE_IOS("");
    ^
    1 warning generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:48:7: warning: 'UIUserNotificationType' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations]
          UIUserNotificationType notificationTypes = 0;
          ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:49:28: warning: 'UIUserNotificationTypeSound' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations]
          notificationTypes |= UIUserNotificationTypeSound;
                               ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:50:28: warning: 'UIUserNotificationTypeAlert' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations]
          notificationTypes |= UIUserNotificationTypeAlert;
                               ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:51:28: warning: 'UIUserNotificationTypeBadge' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations]
          notificationTypes |= UIUserNotificationTypeBadge;
                               ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:52:7: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations]
          UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:notificationTypes categories:nil];
          ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here
    @interface UIUserNotificationSettings : NSObject
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:52:74: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations]
          UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:notificationTypes categories:nil];
                                                                             ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here
    @interface UIUserNotificationSettings : NSObject
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:53:42: warning: 'registerUserNotificationSettings:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter requestAuthorizationWithOptions:completionHandler:] and -[UNUserNotificationCenter setNotificationCategories:] [-Wdeprecated-declarations]
          [[UIApplication sharedApplication] registerUserNotificationSettings:settings];
                                             ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:250:1: note: 'registerUserNotificationSettings:' has been explicitly marked deprecated here
    - (void)registerUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter requestAuthorizationWithOptions:completionHandler:] and -[UNUserNotificationCenter setNotificationCategories:]", ios(8.0, 10.0)) API_UNAVAILABLE(tvos);
    ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:75:5: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations]
        UIUserNotificationSettings * setting = [[UIApplication sharedApplication] currentUserNotificationSettings];
        ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here
    @interface UIUserNotificationSettings : NSObject
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:75:79: warning: 'currentUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] and -[UNUserNotificationCenter getNotificationCategoriesWithCompletionHandler:] [-Wdeprecated-declarations]
        UIUserNotificationSettings * setting = [[UIApplication sharedApplication] currentUserNotificationSettings];
                                                                                  ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:253:70: note: property 'currentUserNotificationSettings' is declared deprecated here
    @property(nonatomic, readonly, nullable) UIUserNotificationSettings *currentUserNotificationSettings API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] and -[UNUserNotificationCenter getNotificationCategoriesWithCompletionHandler:]", ios(8.0, 10.0)) API_UNAVAILABLE(tvos);
                                                                         ^
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:253:70: note: 'currentUserNotificationSettings' has been explicitly marked deprecated here
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/NotificationPermissionStrategy.m:76:26: warning: 'UIUserNotificationTypeNone' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations]
        if (setting.types == UIUserNotificationTypeNone) permissionStatus = PermissionStatusDenied;
                             ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    10 warnings generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:50:9: warning: 'ABAuthorizationStatus' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations]
            ABAuthorizationStatus status = ABAddressBookGetAuthorizationStatus();
            ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here
    typedef CF_ENUM(CFIndex, ABAuthorizationStatus) {
                             ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:50:40: warning: 'ABAddressBookGetAuthorizationStatus' is deprecated: first deprecated in iOS 9.0 - use [CNContactStore authorizationStatusForEntityType:] [-Wdeprecated-declarations]
            ABAuthorizationStatus status = ABAddressBookGetAuthorizationStatus();
                                           ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:50:33: note: 'ABAddressBookGetAuthorizationStatus' has been explicitly marked deprecated here
    AB_EXTERN ABAuthorizationStatus ABAddressBookGetAuthorizationStatus(void) AB_DEPRECATED("use [CNContactStore authorizationStatusForEntityType:]");
                                    ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:53:18: warning: 'kABAuthorizationStatusNotDetermined' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations]
                case kABAuthorizationStatusNotDetermined:
                     ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here
    typedef CF_ENUM(CFIndex, ABAuthorizationStatus) {
                             ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:55:18: warning: 'kABAuthorizationStatusRestricted' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations]
                case kABAuthorizationStatusRestricted:
                     ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here
    typedef CF_ENUM(CFIndex, ABAuthorizationStatus) {
                             ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:57:18: warning: 'kABAuthorizationStatusDenied' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations]
                case kABAuthorizationStatusDenied:
                     ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here
    typedef CF_ENUM(CFIndex, ABAuthorizationStatus) {
                             ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:59:18: warning: 'kABAuthorizationStatusAuthorized' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations]
                case kABAuthorizationStatusAuthorized:
                     ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here
    typedef CF_ENUM(CFIndex, ABAuthorizationStatus) {
                             ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:79:5: warning: 'ABAddressBookRequestAccessWithCompletion' is deprecated: first deprecated in iOS 9.0 - use [CNContactStore requestAccessForEntityType:completionHandler:] [-Wdeprecated-declarations]
        ABAddressBookRequestAccessWithCompletion(ABAddressBookCreate(), ^(bool granted, CFErrorRef error) {
        ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:73:16: note: 'ABAddressBookRequestAccessWithCompletion' has been explicitly marked deprecated here
    AB_EXTERN void ABAddressBookRequestAccessWithCompletion(ABAddressBookRef addressBook,  ABAddressBookRequestAccessCompletionHandler completion) AB_DEPRECATED("use [CNContactStore requestAccessForEntityType:completionHandler:]");
                   ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:79:46: warning: 'ABAddressBookCreate' is deprecated: first deprecated in iOS 9.0 - use [[CNContactStore alloc] init] [-Wdeprecated-declarations]
        ABAddressBookRequestAccessWithCompletion(ABAddressBookCreate(), ^(bool granted, CFErrorRef error) {
                                                 ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:60:28: note: 'ABAddressBookCreate' has been explicitly marked deprecated here
    AB_EXTERN ABAddressBookRef ABAddressBookCreate(void) AB_DEPRECATED("use [[CNContactStore alloc] init]");
                               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:89:5: warning: 'ABAddressBookRequestAccessWithCompletion' is deprecated: first deprecated in iOS 9.0 - use [CNContactStore requestAccessForEntityType:completionHandler:] [-Wdeprecated-declarations]
        ABAddressBookRequestAccessWithCompletion(ABAddressBookCreate(), ^(bool granted, CFErrorRef error) {
        ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:73:16: note: 'ABAddressBookRequestAccessWithCompletion' has been explicitly marked deprecated here
    AB_EXTERN void ABAddressBookRequestAccessWithCompletion(ABAddressBookRef addressBook,  ABAddressBookRequestAccessCompletionHandler completion) AB_DEPRECATED("use [CNContactStore requestAccessForEntityType:completionHandler:]");
                   ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.m:89:46: warning: 'ABAddressBookCreate' is deprecated: first deprecated in iOS 9.0 - use [[CNContactStore alloc] init] [-Wdeprecated-declarations]
        ABAddressBookRequestAccessWithCompletion(ABAddressBookCreate(), ^(bool granted, CFErrorRef error) {
                                                 ^
    In module 'AddressBook' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/permission_handler-5.0.1+1/ios/Classes/strategies/ContactPermissionStrategy.h:11:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:60:28: note: 'ABAddressBookCreate' has been explicitly marked deprecated here
    AB_EXTERN ABAddressBookRef ABAddressBookCreate(void) AB_DEPRECATED("use [[CNContactStore alloc] init]");
                               ^
    10 warnings generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/location-3.0.2/ios/Classes/LocationPlugin.m:148:13: warning: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
                UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Location is Disabled"
                ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/location/location-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:27:12: note: 'UIAlertView' has been explicitly marked deprecated here
    @interface UIAlertView : UIView
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/location-3.0.2/ios/Classes/LocationPlugin.m:148:48: warning: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
                UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Location is Disabled"
                                                   ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/location/location-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:27:12: note: 'UIAlertView' has been explicitly marked deprecated here
    @interface UIAlertView : UIView
               ^
    2 warnings generated.
    2 warnings generated.
    /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/AppAuth/Source/AppAuth/iOS/OIDExternalUserAgentIOS.m:168:58: warning: 'openURL:' is deprecated: first deprecated in iOS 10.0 [-Wdeprecated-declarations]
        openedUserAgent = [[UIApplication sharedApplication] openURL:requestURL];
                                                             ^~~~~~~
                                                             openURL:options:completionHandler:
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/AppAuth/AppAuth-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:123:1: note: 'openURL:' has been explicitly marked deprecated here
    - (BOOL)openURL:(NSURL*)url API_DEPRECATED_WITH_REPLACEMENT("openURL:options:completionHandler:", ios(2.0, 10.0)) NS_EXTENSION_UNAVAILABLE_IOS("");
    ^
    1 warning generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+12/ios/Classes/FLTImagePickerPlugin.m:149:20: warning: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations]
        [[[UIAlertView alloc] initWithTitle:@"Error"
                       ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/image_picker/image_picker-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:27:12: note: 'UIAlertView' has been explicitly marked deprecated here
    @interface UIAlertView : UIView
               ^
    1 warning generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+12/ios/Classes/FLTImagePickerPhotoAssetUtil.m:17:44: warning: 'UIImagePickerControllerReferenceURL' is deprecated: first deprecated in iOS 11.0 - Will be removed in a future release, use PHPicker. [-Wdeprecated-declarations]
      NSURL *referenceURL = [info objectForKey:UIImagePickerControllerReferenceURL];
                                               ^
    In module 'UIKit' imported from /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/Target Support Files/image_picker/image_picker-prefix.pch:2:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h:62:51: note: 'UIImagePickerControllerReferenceURL' has been explicitly marked deprecated here
    UIKIT_EXTERN UIImagePickerControllerInfoKey const UIImagePickerControllerReferenceURL API_DEPRECATED("Will be removed in a future release, use PHPicker.", ios(4.1, 11.0)) API_UNAVAILABLE(tvos); // an NSURL that references an asset in the AssetsLibrary framework
                                                      ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+12/ios/Classes/FLTImagePickerPhotoAssetUtil.m:21:47: warning: 'fetchAssetsWithALAssetURLs:options:' is deprecated: first deprecated in iOS 11 - Will be removed in a future release [-Wdeprecated-declarations]
      PHFetchResult<PHAsset *> *result = [PHAsset fetchAssetsWithALAssetURLs:@[ referenceURL ]
                                                  ^
    In module 'Photos' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+12/ios/Classes/FLTImagePickerPhotoAssetUtil.h:6:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/Photos.framework/Headers/PHAsset.h:74:1: note: 'fetchAssetsWithALAssetURLs:options:' has been explicitly marked deprecated here
    + (PHFetchResult<PHAsset *> *)fetchAssetsWithALAssetURLs:(NSArray<NSURL *> *)assetURLs options:(nullable PHFetchOptions *)options API_DEPRECATED("Will be removed in a future release", ios(8, 11), tvos(8, 11)) API_UNAVAILABLE(macos);
    ^
    2 warnings generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:61:1: warning: implementing deprecated method [-Wdeprecated-implementations]
    - (void)captureOutput:(AVCapturePhotoOutput *)output
    ^
    In module 'AVFoundation' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:6:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVCapturePhotoOutput.h:701:1: note: method 'captureOutput:didFinishProcessingPhotoSampleBuffer:previewPhotoSampleBuffer:resolvedSettings:bracketSettings:error:' declared here
    - (void)captureOutput:(AVCapturePhotoOutput *)output didFinishProcessingPhotoSampleBuffer:(nullable CMSampleBufferRef)photoSampleBuffer previewPhotoSampleBuffer:(nullable CMSampleBufferRef)previewPhotoSampleBuffer resolvedSettings:(AVCaptureResolvedPhotoSettings *)resolvedSettings bracketSettings:(nullable AVCaptureBracketedStillImageSettings *)bracketSettings error:(nullable NSError *)error API_DEPRECATED_WITH_REPLACEMENT("-captureOutput:didFinishProcessingPhoto:error:", ios(10.0, 11.0)) API_UNAVAILABLE(macos);
    ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:73:7: warning: 'JPEGPhotoDataRepresentationForJPEGSampleBuffer:previewPhotoSampleBuffer:' is deprecated: first deprecated in iOS 11.0 [-Wdeprecated-declarations]
          JPEGPhotoDataRepresentationForJPEGSampleBuffer:photoSampleBuffer
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
          -[AVCapturePhoto fileDataRepresentation]
    In module 'AVFoundation' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:6:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVCapturePhotoOutput.h:492:1: note: 'JPEGPhotoDataRepresentationForJPEGSampleBuffer:previewPhotoSampleBuffer:' has been explicitly marked deprecated here
    + (nullable NSData *)JPEGPhotoDataRepresentationForJPEGSampleBuffer:(CMSampleBufferRef)JPEGSampleBuffer previewPhotoSampleBuffer:(nullable CMSampleBufferRef)previewPhotoSampleBuffer API_DEPRECATED_WITH_REPLACEMENT("-[AVCapturePhoto fileDataRepresentation]", ios(10.0, 11.0)) API_UNAVAILABLE(macos);
    ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:339:13: warning: 'OSAtomicCompareAndSwapPtrBarrier' is deprecated: first deprecated in iOS 10.0 - Use atomic_compare_exchange_strong() from <stdatomic.h> instead [-Wdeprecated-declarations]
        while (!OSAtomicCompareAndSwapPtrBarrier(old, newBuffer, (void **)&_latestPixelBuffer)) {
                ^
    In module 'Darwin' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:9:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/usr/include/libkern/OSAtomicDeprecated.h:548:6: note: 'OSAtomicCompareAndSwapPtrBarrier' has been explicitly marked deprecated here
    bool    OSAtomicCompareAndSwapPtrBarrier( void *__oldValue, void *__newValue, void * volatile *__theValue );
            ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:561:11: warning: 'OSAtomicCompareAndSwapPtrBarrier' is deprecated: first deprecated in iOS 10.0 - Use atomic_compare_exchange_strong() from <stdatomic.h> instead [-Wdeprecated-declarations]
      while (!OSAtomicCompareAndSwapPtrBarrier(pixelBuffer, nil, (void **)&_latestPixelBuffer)) {
              ^
    In module 'Darwin' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:9:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/usr/include/libkern/OSAtomicDeprecated.h:548:6: note: 'OSAtomicCompareAndSwapPtrBarrier' has been explicitly marked deprecated here
    bool    OSAtomicCompareAndSwapPtrBarrier( void *__oldValue, void *__newValue, void * volatile *__theValue );
            ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:679:36: warning: 'AVVideoCodecH264' is deprecated: first deprecated in iOS 11.0 [-Wdeprecated-declarations]
          dictionaryWithObjectsAndKeys:AVVideoCodecH264, AVVideoCodecKey,
                                       ^~~~~~~~~~~~~~~~
                                       AVVideoCodecTypeH264
    In module 'AVFoundation' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/camera-0.5.8+8/ios/Classes/CameraPlugin.m:6:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVVideoSettings.h:57:29: note: 'AVVideoCodecH264' has been explicitly marked deprecated here
            AVF_EXPORT NSString *const AVVideoCodecH264 /* @"avc1" */                               API_DEPRECATED_WITH_REPLACEMENT("AVVideoCodecTypeH264", macos(10.7, 10.13), ios(4.0, 11.0), tvos(9.0, 11.0)) API_UNAVAILABLE(watchos);
                                       ^
    5 warnings generated.
    /Users/runner/work/myapp-mobile/myapp-mobile/ios/Pods/BSImagePicker/Sources/Controller/PhotosViewController.swift:25:8: error: compiling for iOS 9.0, but module 'BSGridCollectionViewLayout' has a minimum deployment target of iOS 11.0: /Users/runner/work/myapp-mobile/myapp-mobile/build/ios/Release-iphoneos/BSGridCollectionViewLayout/BSGridCollectionViewLayout.framework/Modules/BSGridCollectionViewLayout.swiftmodule/arm64-apple-ios.swiftmodule
    import BSGridCollectionViewLayout
           ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadataExif.m:9:9: warning: non-portable path to file '"SYMetadataExif.h"'; specified path differs in case from file name on disk [-Wnonportable-include-path]
    #import "SYMetadataEXIF.h"
            ^~~~~~~~~~~~~~~~~~
            "SYMetadataExif.h"
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadataExif.m:41:65: warning: 'kCGImagePropertyExifSubsecTimeOrginal' is deprecated: first deprecated in iOS 10.0 - No longer supported [-Wdeprecated-declarations]
                 SYStringSel(subsecTimeOriginal):       (NSString *)kCGImagePropertyExifSubsecTimeOrginal,
                                                                    ^
    In module 'ImageIO' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadataExif.m:10:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h:248:34: note: 'kCGImagePropertyExifSubsecTimeOrginal' has been explicitly marked deprecated here
    IMAGEIO_EXTERN const CFStringRef kCGImagePropertyExifSubsecTimeOrginal IMAGEIO_AVAILABLE_BUT_DEPRECATED(10.4, 10.11, 4.0, 10.0);
                                     ^
    2 warnings generated.
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:49:36: warning: 'ALAsset' is deprecated: first deprecated in iOS 9 - Use PHAsset from the Photos framework instead [-Wdeprecated-declarations]
    + (instancetype)metadataWithAsset:(ALAsset *)asset
                                       ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAsset.h:40:12: note: 'ALAsset' has been explicitly marked deprecated here
    @interface ALAsset : NSObject {
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:52:5: warning: 'ALAssetRepresentation' is deprecated: first deprecated in iOS 9 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
        ALAssetRepresentation *representation = [asset defaultRepresentation];
        ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAssetRepresentation.h:20:12: note: 'ALAssetRepresentation' has been explicitly marked deprecated here
    @interface ALAssetRepresentation : NSObject {
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:52:52: warning: 'defaultRepresentation' is deprecated: first deprecated in iOS 9 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
        ALAssetRepresentation *representation = [asset defaultRepresentation];
                                                       ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAsset.h:49:1: note: 'defaultRepresentation' has been explicitly marked deprecated here
    - (ALAssetRepresentation *)defaultRepresentation AL_DEPRECATED(4, "Use PHImageRequestOptions with the PHImageManager from the Photos framework instead");
    ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:53:57: warning: 'metadata' is deprecated: first deprecated in iOS 9 - Use CGImageSourceCopyPropertiesAtIndex() to retrieve metadata from an image returned by the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
        return [self metadataWithDictionary:[representation metadata]];
                                                            ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAssetRepresentation.h:56:1: note: 'metadata' has been explicitly marked deprecated here
    - (NSDictionary *)metadata AL_DEPRECATED(4, "Use CGImageSourceCopyPropertiesAtIndex() to retrieve metadata from an image returned by the PHImageManager from the Photos framework instead");
    ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:150:13: warning: 'ALAsset' is deprecated: first deprecated in iOS 9 - Use PHAsset from the Photos framework instead [-Wdeprecated-declarations]
        __block ALAsset *assetAtUrl = nil;
                ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAsset.h:40:12: note: 'ALAsset' has been explicitly marked deprecated here
    @interface ALAsset : NSObject {
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:151:5: warning: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
        ALAssetsLibrary* library = [[ALAssetsLibrary alloc] init];
        ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAssetsLibrary.h:78:12: note: 'ALAssetsLibrary' has been explicitly marked deprecated here
    @interface ALAssetsLibrary : NSObject {
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:151:50: warning: 'ALAssetsLibrary' is deprecated: first deprecated in iOS 9 - Use PHPhotoLibrary from the Photos framework instead [-Wdeprecated-declarations]
        ALAssetsLibrary* library = [[ALAssetsLibrary alloc] init];
                                                     ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAssetsLibrary.h:78:12: note: 'ALAssetsLibrary' has been explicitly marked deprecated here
    @interface ALAssetsLibrary : NSObject {
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:154:49: warning: 'ALAsset' is deprecated: first deprecated in iOS 9 - Use PHAsset from the Photos framework instead [-Wdeprecated-declarations]
        [library assetForURL:assetURL resultBlock:^(ALAsset *asset) {
                                                    ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAsset.h:40:12: note: 'ALAsset' has been explicitly marked deprecated here
    @interface ALAsset : NSObject {
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:154:14: warning: 'assetForURL:resultBlock:failureBlock:' is deprecated: first deprecated in iOS 9 - Use fetchAssetsWithLocalIdentifiers:options: on PHAsset to fetch assets by local identifier (or to lookup PHAssets by a previously known ALAssetPropertyAssetURL use fetchAssetsWithALAssetURLs:options:) from the Photos framework instead [-Wdeprecated-declarations]
        [library assetForURL:assetURL resultBlock:^(ALAsset *asset) {
                 ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAssetsLibrary.h:93:1: note: 'assetForURL:resultBlock:failureBlock:' has been explicitly marked deprecated here
    - (void)assetForURL:(NSURL *)assetURL resultBlock:(ALAssetsLibraryAssetForURLResultBlock)resultBlock failureBlock:(ALAssetsLibraryAccessFailureBlock)failureBlock AL_DEPRECATED(4, "Use fetchAssetsWithLocalIdentifiers:options: on PHAsset to fetch assets by local identifier (or to lookup PHAssets by a previously known ALAssetPropertyAssetURL use fetchAssetsWithALAssetURLs:options:) from the Photos framework instead");
    ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:165:5: warning: 'ALAssetRepresentation' is deprecated: first deprecated in iOS 9 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
        ALAssetRepresentation *representation = [assetAtUrl defaultRepresentation];
        ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAssetRepresentation.h:20:12: note: 'ALAssetRepresentation' has been explicitly marked deprecated here
    @interface ALAssetRepresentation : NSObject {
               ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:165:57: warning: 'defaultRepresentation' is deprecated: first deprecated in iOS 9 - Use PHImageRequestOptions with the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
        ALAssetRepresentation *representation = [assetAtUrl defaultRepresentation];
                                                            ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAsset.h:49:1: note: 'defaultRepresentation' has been explicitly marked deprecated here
    - (ALAssetRepresentation *)defaultRepresentation AL_DEPRECATED(4, "Use PHImageRequestOptions with the PHImageManager from the Photos framework instead");
    ^
    /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:166:28: warning: 'metadata' is deprecated: first deprecated in iOS 9 - Use CGImageSourceCopyPropertiesAtIndex() to retrieve metadata from an image returned by the PHImageManager from the Photos framework instead [-Wdeprecated-declarations]
        return [representation metadata];
                               ^
    In module 'AssetsLibrary' imported from /Users/runner/hostedtoolcache/flutter/1.23.0-18.1.pre-beta/x64/.pub-cache/hosted/pub.dartlang.org/flutter_image_compress-0.7.0/ios/Classes/SYPictureMetadata/SYMetadata.m:14:
    /Applications/Xcode_12.2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.2.sdk/System/Library/Frameworks/AssetsLibrary.framework/Headers/ALAssetRepresentation.h:56:1: note: 'metadata' has been explicitly marked deprecated here
    - (NSDictionary *)metadata AL_DEPRECATED(4, "Use CGImageSourceCopyPropertiesAtIndex() to retrieve metadata from an image returned by the PHImageManager from the Photos framework instead");
    ^
    12 warnings generated.
    ld: warning: dylib (/Users/runner/work/myapp-mobile/myapp-mobile/build/ios/Release-iphoneos/libwebp/libwebp.framework/libwebp) was built for newer iOS version (11.0) than being linked (9.0)
    note: Using new build system
    note: Building targets in parallel
    note: Planning build
    note: Constructing build description

Encountered error while building for device.
Error: Process completed with exit code 1.

Although I don't see any error, just warnings

Any idea on what I could look at ? 🤔

adrienthiery commented 3 years ago

in the end I think I fixed things by adding this to the Podfile :

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
+    target.build_configurations.each do |config|
+        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
+      end
  end
end

Should I add this to the README ?

tuantvu commented 3 years ago

I'm wondering if you also updated your Podfile to specify target platform, like so: platform :ios, '11.0'? It may be a less invasive fix.

adrienthiery commented 3 years ago

I did, as it was in the instructions for setting the plugin up.

To wrap up, after following the instructions (i.e. Adding platform :ios, '11.0' to the podfile), my build was breaking until I :

And I solved this by creating a script (post_pod_install.sh) that fixes the compilation error :

#!/bin/bash

sed -i '' -E "s/JitsiMeet\.//g" Pods/JitsiMeetSDK/Frameworks/JitsiMeet.framework/Modules/JitsiMeet.swiftmodule/*.swiftinterface

And added running this script after each pod install by adding it to my Podfile:

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
    target.build_configurations.each do |config|
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
      end
  end

  # This fixes JitsiMeet compilation error if needed
  # see https://community.jitsi.org/t/pipviewcoordinator-is-not-a-member-type-of-jitsimeet-and-many-more-in-fresh-build/77760
+  system("./post_pod_install.sh")
end
abdullah4one commented 3 years ago

https://stackoverflow.com/questions/66900191/ios-build-failed-for-flutter-project

abdullah4one commented 3 years ago

ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation) ld: warning: dylib (/Users/Shared/store/build/ios/Release-iphoneos/abseil/absl.framework/absl) was built for newer iOS version (11.0) than being linked (10.0) ld: warning: dylib (/Users/Shared/store/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/grpcpp) was built for newer iOS version (11.0) than being linked (10.0) ld: warning: dylib (/Users/Shared/store/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/leveldb) was built for newer iOS version (11.0) than being linked (10.0) note: Using new build system note: Building targets in parallel note: Planning build note: Constructing build description

Encountered error while building for device. Process finished with exit code 1

abdullah4one commented 3 years ago
[✓] Flutter (Channel stable, 2.0.0, on Mac OS X 10.15.4 19E266 darwin-x64, locale en-IN)
    • Flutter version 2.0.0 at /Applications/flutter2.0_midhilaj
    • Framework revision 60bd88df91 (4 weeks ago), 2021-03-03 09:13:17 -0800
    • Engine revision 40441def69
    • Dart version 2.12.0

[!] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at /Users/midhilajm/Library/Android/sdk
    • Platform android-30, build-tools 30.0.3
    • ANDROID_HOME = /Users/midhilajm/Library/Android/sdk
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495)
    ! Some Android licenses not accepted.  To resolve this, run: flutter doctor --android-licenses

[✓] Xcode - develop for iOS and macOS
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 12.4, Build version 12D4e
    • CocoaPods version 1.10.1

[✓] Chrome - develop for the web
    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[✓] Android Studio (version 4.1)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495)

[✓] Android Studio (version 4.1)
    • Android Studio at /Applications/Android Studio 2.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6915495)

[✓] VS Code (version 1.54.3)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension can be installed from:
      🔨 https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter

[✓] Connected device (2 available)
    • DUB LX1 (mobile) • BVK6R19B14001142 • android-arm64  • Android 8.1.0 (API 27)
    • Chrome (web)     • chrome           • web-javascript • Google Chrome 89.0.4389.90
    ! Error: Midhilaj’s iPhone is not connected. Xcode will continue when Midhilaj’s iPhone is connected. (code -13)

! Doctor found issues in 1 category.

Error output from Xcode build: ↳ BUILD FAILED

Xcode's output: ↳ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/PhotoPermissionStrategy.m:39:13: warning: enumeration value 'PHAuthorizationStatusLimited' not handled in switch [-Wswitch] switch (authorizationStatus) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/PhotoPermissionStrategy.m:39:13: note: add missing switch cases switch (authorizationStatus) { ^ 1 warning generated. /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/PermissionManager.m:69:59: warning: 'openURL:' is deprecated: first deprecated in iOS 10.0 [-Wdeprecated-declarations] BOOL success = [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]]; ^~~ openURL:options:completionHandler: In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:123:1: note: 'openURL:' has been explicitly marked deprecated here

  • (BOOL)openURL:(NSURL)url API_DEPRECATED_WITH_REPLACEMENT("openURL:options:completionHandler:", ios(2.0, 10.0)) NS_EXTENSION_UNAVAILABLE_IOS(""); ^ 1 warning generated. /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:42:7: warning: 'UIUserNotificationType' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] UIUserNotificationType notificationTypes = 0; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:43:28: warning: 'UIUserNotificationTypeSound' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeSound; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:44:28: warning: 'UIUserNotificationTypeAlert' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeAlert; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:45:28: warning: 'UIUserNotificationTypeBadge' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] notificationTypes |= UIUserNotificationTypeBadge; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:46:7: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings settings = [UIUserNotificationSettings settingsForTypes:notificationTypes categories:nil]; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:46:74: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:notificationTypes categories:nil]; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:47:42: warning: 'registerUserNotificationSettings:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter requestAuthorizationWithOptions:completionHandler:] and -[UNUserNotificationCenter setNotificationCategories:] [-Wdeprecated-declarations] [[UIApplication sharedApplication] registerUserNotificationSettings:settings]; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:250:1: note: 'registerUserNotificationSettings:' has been explicitly marked deprecated here
  • (void)registerUserNotificationSettings:(UIUserNotificationSettings )notificationSettings API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter requestAuthorizationWithOptions:completionHandler:] and -[UNUserNotificationCenter setNotificationCategories:]", ios(8.0, 10.0)) API_UNAVAILABLE(tvos); ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:68:5: warning: 'UIUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationSettings [-Wdeprecated-declarations] UIUserNotificationSettings setting = [[UIApplication sharedApplication] currentUserNotificationSettings]; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here @interface UIUserNotificationSettings : NSObject ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:68:79: warning: 'currentUserNotificationSettings' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] and -[UNUserNotificationCenter getNotificationCategoriesWithCompletionHandler:] [-Wdeprecated-declarations] UIUserNotificationSettings setting = [[UIApplication sharedApplication] currentUserNotificationSettings]; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:253:70: note: property 'currentUserNotificationSettings' is declared deprecated here @property(nonatomic, readonly, nullable) UIUserNotificationSettings currentUserNotificationSettings API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] and -[UNUserNotificationCenter getNotificationCategoriesWithCompletionHandler:]", ios(8.0, 10.0)) API_UNAVAILABLE(tvos); ^ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:253:70: note: 'currentUserNotificationSettings' has been explicitly marked deprecated here /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:69:26: warning: 'UIUserNotificationTypeNone' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] if (setting.types == UIUserNotificationTypeNone) permissionStatus = PermissionStatusDenied; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:71:5: warning: 'UIRemoteNotificationType' is deprecated: first deprecated in iOS 8.0 - Use UserNotifications Framework's UNAuthorizationOptions for user notifications and registerForRemoteNotifications for receiving remote notifications instead. [-Wdeprecated-declarations] UIRemoteNotificationType type = [[UIApplication sharedApplication] enabledRemoteNotificationTypes]; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:69:32: note: 'UIRemoteNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIRemoteNotificationType) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:71:72: warning: 'enabledRemoteNotificationTypes' is deprecated: first deprecated in iOS 8.0 - Use -[UIApplication isRegisteredForRemoteNotifications] and UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] to retrieve user-enabled remote notification and user notification settings [-Wdeprecated-declarations] UIRemoteNotificationType type = [[UIApplication sharedApplication] enabledRemoteNotificationTypes]; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h:229:1: note: 'enabledRemoteNotificationTypes' has been explicitly marked deprecated here
  • (UIRemoteNotificationType)enabledRemoteNotificationTypes API_DEPRECATED("Use -[UIApplication isRegisteredForRemoteNotifications] and UserNotifications Framework's -[UNUserNotificationCenter getNotificationSettingsWithCompletionHandler:] to retrieve user-enabled remote notification and user notification settings", ios(3.0, 8.0)) API_UNAVAILABLE(tvos); ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/NotificationPermissionStrategy.m:72:17: warning: 'UIUserNotificationTypeNone' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNAuthorizationOptions [-Wdeprecated-declarations] if (type == UIUserNotificationTypeNone) permissionStatus = PermissionStatusDenied; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/permission_handler/permission_handler-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) { ^ 13 warnings generated. /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:50:9: warning: 'ABAuthorizationStatus' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations] ABAuthorizationStatus status = ABAddressBookGetAuthorizationStatus(); ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here typedef CF_ENUM(CFIndex, ABAuthorizationStatus) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:50:40: warning: 'ABAddressBookGetAuthorizationStatus' is deprecated: first deprecated in iOS 9.0 - use [CNContactStore authorizationStatusForEntityType:] [-Wdeprecated-declarations] ABAuthorizationStatus status = ABAddressBookGetAuthorizationStatus(); ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:50:33: note: 'ABAddressBookGetAuthorizationStatus' has been explicitly marked deprecated here AB_EXTERN ABAuthorizationStatus ABAddressBookGetAuthorizationStatus(void) AB_DEPRECATED("use [CNContactStore authorizationStatusForEntityType:]"); ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:53:18: warning: 'kABAuthorizationStatusNotDetermined' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations] case kABAuthorizationStatusNotDetermined: ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here typedef CF_ENUM(CFIndex, ABAuthorizationStatus) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:55:18: warning: 'kABAuthorizationStatusRestricted' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations] case kABAuthorizationStatusRestricted: ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here typedef CF_ENUM(CFIndex, ABAuthorizationStatus) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:57:18: warning: 'kABAuthorizationStatusDenied' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations] case kABAuthorizationStatusDenied: ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here typedef CF_ENUM(CFIndex, ABAuthorizationStatus) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:59:18: warning: 'kABAuthorizationStatusAuthorized' is deprecated: first deprecated in iOS 9.0 - use CNAuthorizationStatus [-Wdeprecated-declarations] case kABAuthorizationStatusAuthorized: ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:44:26: note: 'ABAuthorizationStatus' has been explicitly marked deprecated here typedef CF_ENUM(CFIndex, ABAuthorizationStatus) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:79:5: warning: 'ABAddressBookRequestAccessWithCompletion' is deprecated: first deprecated in iOS 9.0 - use [CNContactStore requestAccessForEntityType:completionHandler:] [-Wdeprecated-declarations] ABAddressBookRequestAccessWithCompletion(ABAddressBookCreate(), ^(bool granted, CFErrorRef error) { ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:73:16: note: 'ABAddressBookRequestAccessWithCompletion' has been explicitly marked deprecated here AB_EXTERN void ABAddressBookRequestAccessWithCompletion(ABAddressBookRef addressBook, ABAddressBookRequestAccessCompletionHandler completion) AB_DEPRECATED("use [CNContactStore requestAccessForEntityType:completionHandler:]"); ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:79:46: warning: 'ABAddressBookCreate' is deprecated: first deprecated in iOS 9.0 - use [[CNContactStore alloc] init] [-Wdeprecated-declarations] ABAddressBookRequestAccessWithCompletion(ABAddressBookCreate(), ^(bool granted, CFErrorRef error) { ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:60:28: note: 'ABAddressBookCreate' has been explicitly marked deprecated here AB_EXTERN ABAddressBookRef ABAddressBookCreate(void) AB_DEPRECATED("use [[CNContactStore alloc] init]"); ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:89:5: warning: 'ABAddressBookRequestAccessWithCompletion' is deprecated: first deprecated in iOS 9.0 - use [CNContactStore requestAccessForEntityType:completionHandler:] [-Wdeprecated-declarations] ABAddressBookRequestAccessWithCompletion(ABAddressBookCreate(), ^(bool granted, CFErrorRef error) { ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:73:16: note: 'ABAddressBookRequestAccessWithCompletion' has been explicitly marked deprecated here AB_EXTERN void ABAddressBookRequestAccessWithCompletion(ABAddressBookRef addressBook, ABAddressBookRequestAccessCompletionHandler completion) AB_DEPRECATED("use [CNContactStore requestAccessForEntityType:completionHandler:]"); ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.m:89:46: warning: 'ABAddressBookCreate' is deprecated: first deprecated in iOS 9.0 - use [[CNContactStore alloc] init] [-Wdeprecated-declarations] ABAddressBookRequestAccessWithCompletion(ABAddressBookCreate(), ^(bool granted, CFErrorRef error) { ^ In module 'AddressBook' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/permission_handler-4.4.0/ios/Classes/strategies/ContactPermissionStrategy.h:11: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/AddressBook.framework/Headers/ABAddressBook.h:60:28: note: 'ABAddressBookCreate' has been explicitly marked deprecated here AB_EXTERN ABAddressBookRef ABAddressBookCreate(void) AB_DEPRECATED("use [[CNContactStore alloc] init]"); ^ 10 warnings generated. /Users/Shared/store/ios/Pods/libwebp/src/dsp/dec_neon.c:1461:38: warning: variable 'sum_left' may be uninitialized when used here [-Wconditional-uninitialized] const uint16x8_t sum = vaddq_u16(sum_left, sum_top); ^~~~ /Users/Shared/store/ios/Pods/libwebp/src/dsp/dec_neon.c:1426:3: note: variable 'sum_left' is declared here uint16x8_t sum_left; ^ /Users/Shared/store/ios/Pods/libwebp/src/dsp/dec_neon.c:1461:48: warning: variable 'sum_top' may be uninitialized when used here [-Wconditional-uninitialized] const uint16x8_t sum = vaddq_u16(sum_left, sum_top); ^~~ /Users/Shared/store/ios/Pods/libwebp/src/dsp/dec_neon.c:1425:3: note: variable 'sum_top' is declared here uint16x8_t sum_top; ^ /Users/Shared/store/ios/Pods/libwebp/src/dsp/dec_neon.c:1550:38: warning: variable 'sum_left' may be uninitialized when used here [-Wconditional-uninitialized] const uint16x8_t sum = vaddq_u16(sum_left, sum_top); ^~~~ /Users/Shared/store/ios/Pods/libwebp/src/dsp/dec_neon.c:1509:3: note: variable 'sum_left' is declared here uint16x8_t sum_left; ^ /Users/Shared/store/ios/Pods/libwebp/src/dsp/dec_neon.c:1550:48: warning: variable 'sum_top' may be uninitialized when used here [-Wconditional-uninitialized] const uint16x8_t sum = vaddq_u16(sum_left, sum_top); ^~~ /Users/Shared/store/ios/Pods/libwebp/src/dsp/dec_neon.c:1508:3: note: variable 'sum_top' is declared here uint16x8_t sum_top; ^ 4 warnings generated. /Users/Shared/store/ios/Pods/libwebp/src/enc/backward_references_enc.c:694:12: warning: variable 'best_offset' may be uninitialized when used here [-Wconditional-uninitialized] (best_offset << MAX_LENGTH_BITS) | (uint32_t)best_length; ^~~ /Users/Shared/store/ios/Pods/libwebp/src/enc/backward_references_enc.c:626:20: note: initialize the variable 'best_offset' to silence this warning int best_offset; ^ = 0 1 warning generated. /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+22/ios/Classes/FLTImagePickerPlugin.m:149:20: warning: 'UIAlertView' is deprecated: first deprecated in iOS 9.0 - UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead [-Wdeprecated-declarations] [[[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Error", nil) ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/image_picker/image_picker-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h:27:12: note: 'UIAlertView' has been explicitly marked deprecated here @interface UIAlertView : UIView ^ 1 warning generated. /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+22/ios/Classes/FLTImagePickerPhotoAssetUtil.m:17:44: warning: 'UIImagePickerControllerReferenceURL' is deprecated: first deprecated in iOS 11.0 - Will be removed in a future release, use PHPicker. [-Wdeprecated-declarations] NSURL referenceURL = [info objectForKey:UIImagePickerControllerReferenceURL]; ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/image_picker/image_picker-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h:62:51: note: 'UIImagePickerControllerReferenceURL' has been explicitly marked deprecated here UIKIT_EXTERN UIImagePickerControllerInfoKey const UIImagePickerControllerReferenceURL API_DEPRECATED("Will be removed in a future release, use PHPicker.", ios(4.1, 11.0)) API_UNAVAILABLE(tvos); // an NSURL that references an asset in the AssetsLibrary framework ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+22/ios/Classes/FLTImagePickerPhotoAssetUtil.m:21:47: warning: 'fetchAssetsWithALAssetURLs:options:' is deprecated: first deprecated in iOS 11 - Will be removed in a future release [-Wdeprecated-declarations] PHFetchResult<PHAsset > *result = [PHAsset fetchAssetsWithALAssetURLs:@[ referenceURL ] ^ In module 'Photos' imported from /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+22/ios/Classes/FLTImagePickerPhotoAssetUtil.h:6: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/Photos.framework/Headers/PHAsset.h:74:1: note: 'fetchAssetsWithALAssetURLs:options:' has been explicitly marked deprecated here
  • (PHFetchResult<PHAsset > )fetchAssetsWithALAssetURLs:(NSArray<NSURL > )assetURLs options:(nullable PHFetchOptions )options API_DEPRECATED("Will be removed in a future release", ios(8, 11), tvos(8, 11)) API_UNAVAILABLE(macos); ^ 2 warnings generated. /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariBrowserOptions.swift:29:16: warning: unnecessary check for 'iOS'; enclosing scope ensures guard will always be true if #available(iOS 11.0, ) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariBrowserOptions.swift:12:14: note: enclosing scope here public class SafariBrowserOptions: Options { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariViewController.swift:58:12: warning: unnecessary check for 'iOS'; enclosing scope ensures guard will always be true if #available(iOS 11.0, ) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariViewController.swift:12:14: note: enclosing scope here public class SafariViewController: SFSafariViewController, FlutterPlugin, SFSafariViewControllerDelegate { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariViewController.swift:62:12: warning: unnecessary check for 'iOS'; enclosing scope ensures guard will always be true if #available(iOS 10.0, ) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariViewController.swift:12:14: note: enclosing scope here public class SafariViewController: SFSafariViewController, FlutterPlugin, SFSafariViewControllerDelegate { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppBrowserWebViewController.swift:388:19: warning: coercion of implicitly unwrappable value of type 'InAppWebView_IBWrapper?' to 'Any' does not unwrap optional print(containerWebView) ^~~~ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppBrowserWebViewController.swift:26:19: note: implicitly unwrapped property 'containerWebView' declared here @IBOutlet var containerWebView: InAppWebView_IBWrapper! ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppBrowserWebViewController.swift:388:19: note: provide a default value to avoid this warning print(containerWebView) ^~~~ ?? <#default value#> /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppBrowserWebViewController.swift:388:19: note: force-unwrap the value to avoid this warning print(containerWebView) ^~~~ ! /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppBrowserWebViewController.swift:388:19: note: explicitly cast to 'Any' with 'as Any' to silence this warning print(containerWebView) ^~~~ as Any /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppBrowserWebViewController.swift:603:21: warning: setter for 'statusBarStyle' was deprecated in iOS 9.0: Use -[UIViewController preferredStatusBarStyle] UIApplication.shared.statusBarStyle = UIStatusBarStyle(rawValue: self.previousStatusBarStyle)! ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppBrowserWebViewController.swift:788:13: warning: setter for 'statusBarStyle' was deprecated in iOS 9.0: Use -[UIViewController preferredStatusBarStyle] UIApplication.shared.statusBarStyle = UIStatusBarStyle(rawValue: previousStatusBarStyle)! ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppWebView.swift:1278:25: warning: 'spotlightSuggestion' was deprecated in iOS 10.0: renamed to 'WKDataDetectorTypes.lookupSuggestion' return .spotlightSuggestion ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppWebView.swift:1278:25: note: use 'WKDataDetectorTypes.lookupSuggestion' instead return .spotlightSuggestion ^~~~~~~ WKDataDetectorTypes.lookupSuggestion /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppWebView.swift:1313:31: warning: 'spotlightSuggestion' was deprecated in iOS 10.0: renamed to 'WKDataDetectorTypes.lookupSuggestion' if type.contains(.spotlightSuggestion) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/InAppWebView.swift:1313:31: note: use 'WKDataDetectorTypes.lookupSuggestion' instead if type.contains(.spotlightSuggestion) { ^~~~~~~ WKDataDetectorTypes.lookupSuggestion /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariBrowserOptions.swift:29:16: warning: unnecessary check for 'iOS'; enclosing scope ensures guard will always be true if #available(iOS 11.0, ) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariBrowserOptions.swift:12:14: note: enclosing scope here public class SafariBrowserOptions: Options { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariViewController.swift:58:12: warning: unnecessary check for 'iOS'; enclosing scope ensures guard will always be true if #available(iOS 11.0, ) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariViewController.swift:12:14: note: enclosing scope here public class SafariViewController: SFSafariViewController, FlutterPlugin, SFSafariViewControllerDelegate { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariViewController.swift:62:12: warning: unnecessary check for 'iOS'; enclosing scope ensures guard will always be true if #available(iOS 10.0, ) { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Classes/SafariViewController.swift:12:14: note: enclosing scope here public class SafariViewController: SFSafariViewController, FlutterPlugin, SFSafariViewControllerDelegate { ^ /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/file_picker-2.1.7/ios/Classes/FileUtils.m:129:30: warning: unused variable 'exportError' [-Wunused-variable] NSError exportError = exporter.error; ^ 1 warning generated. /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/file_picker-2.1.7/ios/Classes/FilePickerPlugin.m:300:1: warning: implementing deprecated method [-Wdeprecated-implementations]
  • (void)documentPicker:(UIDocumentPickerViewController )controller didPickDocumentAtURL:(NSURL )url{ ^ In module 'UIKit' imported from /Users/Shared/store/ios/Pods/Target Support Files/file_picker/file_picker-prefix.pch:2: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h:26:1: note: method 'documentPicker:didPickDocumentAtURL:' declared here
  • (void)documentPicker:(UIDocumentPickerViewController )controller didPickDocumentAtURL:(NSURL )url API_DEPRECATED_WITH_REPLACEMENT("documentPicker:didPickDocumentsAtURLs:", ios(8.0, 11.0)); ^ 1 warning generated. / com.apple.ibtool.document.warnings / /Applications/flutter2.0_midhilaj/.pub-cache/hosted/pub.dartlang.org/flutter_inappwebview-4.0.0+4/ios/Storyboards/WebView.storyboard:global: warning: This file is set to build for a version older than the deployment target. Functionality may be limited. [9] ld: warning: ignoring file /Users/Shared/store/build/ios/Release-iphoneos/abseil/absl.framework/absl, building for iOS-armv7 but attempting to link with file built for iOS-arm64 ld: warning: ignoring file /Users/Shared/store/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/grpcpp, building for iOS-armv7 but attempting to link with file built for iOS-arm64 ld: warning: ignoring file /Users/Shared/store/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/leveldb, building for iOS-armv7 but attempting to link with file built for iOS-arm64 Undefined symbols for architecture armv7: "absl::lts_2020_02_25::string_view::find(absl::lts_2020_02_25::string_view, unsigned long) const", referenced from: firebase::firestore::model::ResourcePath::FromStringView(absl::lts_2020_02_25::string_view) in resource_path.o "absl::lts_2020_02_25::AlphaNum::AlphaNum(absl::lts_2020_02_25::Hex)", referenced from: firebase::firestore::nanopb::PrintHeader(int, absl::lts_2020_02_25::string_view, void const) in pretty_printing.o "leveldb::WriteBatch::WriteBatch()", referenced from: firebase::firestore::local::LevelDbTransaction::Commit() in leveldb_transaction.o "leveldb::WriteBatch::Delete(leveldb::Slice const&)", referenced from: firebase::firestore::local::LevelDbTransaction::Commit() in leveldb_transaction.o "leveldb::WriteBatch::Put(leveldb::Slice const&, leveldb::Slice const&)", referenced from: firebase::firestore::local::LevelDbTransaction::Commit() in leveldb_transaction.o "leveldb::WriteBatch::~WriteBatch()", referenced from: firebase::firestore::local::LevelDbTransaction::Commit() in leveldb_transaction.o "absl::lts_2020_02_25::StrAppend(std::1::basic_string<char, std::__1::char_traits, std::1::allocator >, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&)", referenced from: -[FSTFirestoreComponent firestoreForDatabase:] in FSTFirestoreComponent.o firebase::firestore::local::DescribeKey(leveldb::Slice) in leveldb_key.o firebase::firestore::local::LevelDbOpener::StorageDir(firebase::firestore::util::Path const&) in leveldb_opener.o firebase::firestore::local::LevelDbTransaction::ToString() in leveldb_transaction.o firebase::firestore::util::Status::CausedBy(firebase::firestore::util::Status const&) in status.o firebase::firestore::core::Target::CanonicalId() const in target.o "grpc_impl::ChannelArguments::SetInt(std::1::basic_string<char, std::__1::char_traits, std::1::allocator > const&, int)", referenced from: firebase::firestore::remote::GrpcConnection::CreateChannel() const in grpc_connection.o "leveldb::DB::Open(leveldb::Options const&, std::1::basic_string<char, std::__1::char_traits, std::1::allocator > const&, leveldb::DB*)", referenced from: firebase::firestore::local::LevelDbPersistence::OpenDb(firebase::firestore::util::Path const&) in leveldb_persistence.o "absl::lts_2020_02_25::StrAppend(std::1::basic_string<char, std::__1::char_traits, std::1::allocator >, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&)", referenced from: firebase::firestore::local::DescribeKey(leveldb::Slice) in leveldb_key.o firebase::firestore::local::LruGarbageCollector::RunGarbageCollection(std::1::unordered_map<int, firebase::firestore::local::TargetData, std::1::hash, std::1::equal_to, std::1::allocator<std::1::pair<int const, firebase::firestore::local::TargetData> > > const&) in lru_garbage_collector.o "grpc_impl::ChannelArguments::SetSslTargetNameOverride(std::__1::basic_string<char, std::1::char_traits, std::1::allocator > const&)", referenced from: firebase::firestore::remote::GrpcConnection::CreateChannel() const in grpc_connection.o "leveldb::Status::Status(leveldb::Status::Code, leveldb::Slice const&, leveldb::Slice const&)", referenced from: firebase::firestore::local::LevelDbTransaction::Get(absl::lts_2020_02_25::string_view, std::__1::basic_string<char, std::1::char_traits, std::1::allocator >*) in leveldb_transaction.o "absl::lts_2020_02_25::AlphaNum::AlphaNum(absl::lts_2020_02_25::Hex)", referenced from: std::__1::basic_string<char, std::1::char_traits, std::1::allocator > firebase::firestore::util::StringFormat<firebase::firestore::remote::GrpcStream>(char const, firebase::firestore::remote::GrpcStream* const&) in grpc_stream.o std::__1::basic_string<char, std::1::char_traits, std::1::allocator > firebase::firestore::util::StringFormat<firebase::firestore::remote::GrpcStream, unsigned long, bool>(char const, firebase::firestore::remote::GrpcStream* const&, unsigned long const&, bool const&) in grpc_stream.o std::__1::basic_string<char, std::1::char_traits, std::1::allocator > firebase::firestore::util::StringFormat<firebase::firestore::remote::GrpcStream, unsigned long>(char const, firebase::firestore::remote::GrpcStream* const&, unsigned long const&) in grpc_stream.o std::__1::basic_string<char, std::1::char_traits, std::1::allocator > firebase::firestore::util::StringFormat<firebase::firestore::remote::GrpcStream, firebase::firestore::remote::GrpcCompletion::Type>(char const, firebase::firestore::remote::GrpcStream* const&, firebase::firestore::remote::GrpcCompletion::Type const&) in grpc_stream.o std::__1::basic_string<char, std::1::char_traits, std::1::allocator > firebase::firestore::util::StringFormat<firebase::firestore::remote::RemoteStore>(char const, firebase::firestore::remote::RemoteStore* const&) in remote_store.o std::__1::basic_string<char, std::1::char_traits, std::1::allocator > firebase::firestore::util::StringFormat<firebase::firestore::remote::RemoteStore*, std::1::basic_string<char, std::1::char_traits, std::1::allocator >, firebase::firestore::Error, std::1::basic_string<char, std::1::char_traits, std::1::allocator > >(char const, firebase::firestore::remote::RemoteStore const&, std::1::basic_string<char, std::1::char_traits, std::1::allocator > const&, firebase::firestore::Error const&, std::1::basic_string<char, std::1::char_traits, std::1::allocator > const&) in remote_store.o std::__1::basic_string<char, std::1::char_traits, std::1::allocator > firebase::firestore::util::StringFormat<std::1::basic_string<char, std::1::char_traits, std::1::allocator >, firebase::firestore::remote::Stream const>(char const, std::1::basic_string<char, std::1::char_traits, std::1::allocator > const&, firebase::firestore::remote::Stream const* const&) in stream.o ... "grpc_impl::SslCredentials(grpc_impl::SslCredentialsOptions const&)", referenced from: firebase::firestore::remote::(anonymous namespace)::CreateSslCredentials(std::1::basic_string<char, std::1::char_traits, std::__1::allocator > const&) in grpc_connection.o "leveldb::Status::ToString() const", referenced from: firebase::firestore::local::LevelDbMigrations::ReadSchemaVersion(leveldb::DB*) in leveldb_migrations.o firebase::firestore::local::LevelDbMutationQueue::LookupMutationBatch(int) in leveldb_mutation_queue.o firebase::firestore::local::LevelDbRemoteDocumentCache::Get(firebase::firestore::model::DocumentKey const&) in leveldb_remote_document_cache.o firebase::firestore::local::LevelDbTransaction::Iterator::Seek(std::1::basic_string<char, std::__1::char_traits, std::__1::allocator > const&) in leveldb_transaction.o firebase::firestore::local::LevelDbTransaction::Iterator::AdvanceLDB() in leveldb_transaction.o firebase::firestore::local::LevelDbTransaction::Commit() in leveldb_transaction.o firebase::firestore::local::ConvertStatus(leveldb::Status const&) in leveldb_util.o ... "absl::lts_2020_02_25::ByChar::Find(absl::lts_2020_02_25::string_view, unsigned long) const", referenced from: absl::lts_2020_02_25::strings_internal::SplitIterator<absl::lts_2020_02_25::strings_internal::Splitter<absl::lts_2020_02_25::ByChar, firebase::firestore::model::FieldPath::FromDotSeparatedStringView(absl::lts_2020_02_25::string_view)::$_0>

    ::operator++() in field_path.o absl::lts_2020_02_25::strings_internal::SplitIterator<absl::lts_2020_02_25::strings_internal::Splitter<absl::lts_2020_02_25::ByChar, absl::lts_2020_02_25::SkipEmpty> >::operator++() in resource_path.o "grpc::ByteBuffer::Dump(std::1::vector<grpc::Slice, std::1::allocator >) const", referenced from: firebase::firestore::remote::ByteBufferReader::ByteBufferReader(grpc::ByteBuffer const&) in grpc_nanopb.o "grpc_impl::ClientContext::ClientContext()", referenced from: absl::lts_2020_02_25::memory_internal::MakeUniqueResult::scalar absl::lts_2020_02_25::make_unique() in grpc_connection.o "grpc_impl::ChannelArguments::ChannelArguments()", referenced from: firebase::firestore::remote::GrpcConnection::CreateChannel() const in grpc_connection.o "absl::lts_2020_02_25::strings_internal::AppendPieces(std::1::basic_string<char, std::__1::char_traits, std::1::allocator >, std::initializer_list)", referenced from: firebase::firestore::util::(anonymous namespace)::DefaultThrowHandler(firebase::firestore::util::ExceptionType, char const, char const, int, std::1::basic_string<char, std::__1::char_traits, std::1::allocator > const&) in exception.o firebase::firestore::local::LevelDbTransaction::ToString() in leveldb_transaction.o firebase::firestore::local::LruGarbageCollector::RunGarbageCollection(std::1::unordered_map<int, firebase::firestore::local::TargetData, std::1::hash, std::1::equal_to, std::1::allocator<std::1::pair<int const, firebase::firestore::local::TargetData> > > const&) in lru_garbage_collector.o "grpc::Status::OK", referenced from: grpc::SerializationTraits<grpc::ByteBuffer, void>::Deserialize(grpc::ByteBuffer, grpc::ByteBuffer) in grpc_connection.o "grpc_impl::InsecureChannelCredentials()", referenced from: firebase::firestore::remote::GrpcConnection::CreateChannel() const in grpc_connection.o "grpc_impl::ClientContext::TryCancel()", referenced from: firebase::firestore::remote::GrpcStream::Shutdown() in grpc_stream.o firebase::firestore::remote::GrpcUnaryCall::Shutdown() in grpc_unary_call.o "grpc_impl::ChannelArguments::~ChannelArguments()", referenced from: firebase::firestore::remote::GrpcConnection::CreateChannel() const in grpc_connection.o "grpc_impl::ClientContext::~ClientContext()", referenced from: std::1::unique_ptr<grpc_impl::ClientContext, std::1::default_delete >::~unique_ptr() in grpc_connection.o firebase::firestore::remote::GrpcConnection::CreateStream(absl::lts_2020_02_25::string_view, firebase::firestore::auth::Token const&, firebase::firestore::remote::GrpcStreamObserver) in grpc_connection.o absl::lts_2020_02_25::memory_internal::MakeUniqueResult::scalar absl::lts_2020_02_25::make_unique<firebase::firestore::remote::GrpcStream, std::1::unique_ptr<grpc_impl::ClientContext, std::1::default_delete >, std::1::unique_ptr<grpc_impl::ClientAsyncReaderWriter<grpc::ByteBuffer, grpc::ByteBuffer>, std::1::default_delete<grpc_impl::ClientAsyncReaderWriter<grpc::ByteBuffer, grpc::ByteBuffer> > >, std::__1::shared_ptr&, firebase::firestore::remote::GrpcConnection, firebase::firestore::remote::GrpcStreamObserver*&>(std::1::unique_ptr<grpc_impl::ClientContext, std::1::default_delete >&&, std::1::unique_ptr<grpc_impl::ClientAsyncReaderWriter<grpc::ByteBuffer, grpc::ByteBuffer>, std::1::default_delete<grpc_impl::ClientAsyncReaderWriter<grpc::ByteBuffer, grpc::ByteBuffer> > >&&, std::1::shared_ptr&, firebase::firestore::remote::GrpcConnection&&, firebase::firestore::remote::GrpcStreamObserver&) in grpc_connection.o firebase::firestore::remote::GrpcConnection::CreateUnaryCall(absl::lts_2020_02_25::string_view, firebase::firestore::auth::Token const&, grpc::ByteBuffer const&) in grpc_connection.o absl::lts_2020_02_25::memory_internal::MakeUniqueResult::scalar absl::lts_2020_02_25::make_unique<firebase::firestore::remote::GrpcUnaryCall, std::1::unique_ptr<grpc_impl::ClientContext, std::1::default_delete >, std::1::unique_ptr<grpc_impl::ClientAsyncResponseReader, std::1::default_delete<grpc_impl::ClientAsyncResponseReader

    , std::1::shared_ptr&, firebase::firestore::remote::GrpcConnection, grpc::ByteBuffer const&>(std::1::unique_ptr<grpc_impl::ClientContext, std::1::default_delete >&&, std::1::unique_ptr<grpc_impl::ClientAsyncResponseReader, std::1::default_delete<grpc_impl::ClientAsyncResponseReader &&, std::__1::shared_ptr&, firebase::firestore::remote::GrpcConnection&&, grpc::ByteBuffer const&) in grpc_connection.o firebase::firestore::remote::GrpcConnection::CreateStreamingReader(absl::lts_2020_02_25::string_view, firebase::firestore::auth::Token const&, grpc::ByteBuffer const&) in grpc_connection.o absl::lts_2020_02_25::memory_internal::MakeUniqueResult::scalar absl::lts_2020_02_25::make_unique<firebase::firestore::remote::GrpcStreamingReader, std::1::unique_ptr<grpc_impl::ClientContext, std::1::default_delete >, std::1::unique_ptr<grpc_impl::ClientAsyncReaderWriter<grpc::ByteBuffer, grpc::ByteBuffer>, std::1::default_delete<grpc_impl::ClientAsyncReaderWriter<grpc::ByteBuffer, grpc::ByteBuffer> > >, std::1::shared_ptr&, firebase::firestore::remote::GrpcConnection, grpc::ByteBuffer const&>(std::1::unique_ptr<grpc_impl::ClientContext, std::1::default_delete >&&, std::1::unique_ptr<grpc_impl::ClientAsyncReaderWriter<grpc::ByteBuffer, grpc::ByteBuffer>, std::1::default_delete<grpc_impl::ClientAsyncReaderWriter<grpc::ByteBuffer, grpc::ByteBuffer> > >&&, std::__1::shared_ptr&, firebase::firestore::remote::GrpcConnection&&, grpc::ByteBuffer const&) in grpc_connection.o ... "grpc::Version()", referenced from: firebase::firestore::remote::GrpcConnection::CreateContext(firebase::firestore::auth::Token const&) const in grpc_connection.o "absl::lts_2020_02_25::numbers_internal::FastIntToBuffer(unsigned long long, char)", referenced from: absl::lts_2020_02_25::AlphaNum::AlphaNum(unsigned long long) in FSTUserDataConverter.o "leveldb::Options::Options()", referenced from: firebase::firestore::local::LevelDbPersistence::OpenDb(firebase::firestore::util::Path const&) in leveldb_persistence.o "absl::lts_2020_02_25::numbers_internal::SixDigitsToBuffer(double, char)", referenced from: absl::lts_2020_02_25::AlphaNum::AlphaNum(double) in FIRGeoPoint.o "grpc_impl::ClientContext::AddMetadata(std::1::basic_string<char, std::__1::char_traits, std::1::allocator > const&, std::1::basic_string<char, std::__1::char_traits, std::1::allocator > const&)", referenced from: firebase::firestore::remote::FirebaseMetadataProviderApple::UpdateMetadata(grpc_impl::ClientContext&) in firebase_metadata_provider_apple.o firebase::firestore::remote::GrpcConnection::CreateContext(firebase::firestore::auth::Token const&) const in grpc_connection.o "grpc_impl::Channel::GetState(bool)", referenced from: firebase::firestore::remote::GrpcConnection::EnsureActiveStub() in grpc_connection.o "absl::lts_2020_02_25::BytesToHexString(absl::lts_2020_02_25::string_view)", referenced from: firebase::firestore::nanopb::ByteString::ToHexString() const in byte_string.o "absl::lts_2020_02_25::string_view::find_first_of(absl::lts_2020_02_25::string_view, unsigned long) const", referenced from: firebase::firestore::model::FieldPath::FromDotSeparatedStringView(absl::lts_2020_02_25::string_view) in field_path.o "absl::lts_2020_02_25::StrCat(absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&)", referenced from: firebase::firestore::util::(anonymous namespace)::DefaultThrowHandler(firebase::firestore::util::ExceptionType, char const, char const, int, std::1::basic_string<char, std::__1::char_traits, std::1::allocator > const&) in exception.o firebase::firestore::remote::GrpcConnection::CreateContext(firebase::firestore::auth::Token const&) const in grpc_connection.o firebase::firestore::local::ConvertStatus(leveldb::Status const&) in leveldb_util.o firebase::firestore::core::OrderBy::CanonicalId() const in order_by.o "absl::lts_2020_02_25::Base64Escape(absl::lts_2020_02_25::string_view, std::1::basic_string<char, std::__1::char_traits, std::1::allocator >)", referenced from: firebase::firestore::local::DescribeKey(leveldb::Slice) in leveldb_key.o "absl::lts_2020_02_25::StrAppend(std::1::basic_string<char, std::__1::char_traits, std::1::allocator >, absl::lts_2020_02_25::AlphaNum const&)", referenced from: firebase::firestore::util::(anonymous namespace)::DefaultThrowHandler(firebase::firestore::util::ExceptionType, char const, char const, int, std::1::basic_string<char, std::__1::char_traits, std::1::allocator > const&) in exception.o firebase::firestore::local::DescribeKey(leveldb::Slice) in leveldb_key.o firebase::firestore::core::Target::CanonicalId() const in target.o "grpc::g_core_codegen_interface", referenced from: grpc_impl::CompletionQueue::Next(void, bool) in datastore.o grpc_impl::CompletionQueue::CompletionQueue(grpc_completion_queue_attributes const&) in datastore.o grpc::GrpcLibraryCodegen::GrpcLibraryCodegen(bool) in datastore.o grpc::internal::Mutex::~Mutex() in datastore.o grpc::GrpcLibraryCodegen::~GrpcLibraryCodegen() in datastore.o grpc_impl::CompletionQueue::~CompletionQueue() in datastore.o grpc::ByteBuffer::~ByteBuffer() in datastore.o ... "absl::lts_2020_02_25::numbers_internal::FastIntToBuffer(long long, char)", referenced from: absl::lts_2020_02_25::AlphaNum::AlphaNum(long long) in FIRFirestoreSettings.o "absl::lts_2020_02_25::CEscape(absl::lts_2020_02_25::string_view)", referenced from: firebase::firestore::nanopb::ByteString::ToString() const in byte_string.o firebase::firestore::nanopb::operator<<(std::1::basic_ostream<char, std::1::char_traits >&, firebase::firestore::nanopb::ByteString const&) in byte_string.o "absl::lts_2020_02_25::StrReplaceAll(absl::lts_2020_02_25::string_view, std::initializer_list<std::1::pair<absl::lts_2020_02_25::string_view, absl::lts_2020_02_25::string_view> >)", referenced from: firebase::firestore::model::FieldPath::CanonicalString() const in field_path.o "absl::lts_2020_02_25::numbers_internal::FastIntToBuffer(int, char*)", referenced from: absl::lts_2020_02_25::AlphaNum::AlphaNum(int) in datastore.o "grpc_impl::CreateCustomChannelImpl(std::1::basic_string<char, std::__1::char_traits, std::1::allocator > const&, std::1::shared_ptr const&, grpc_impl::ChannelArguments const&)", referenced from: firebase::firestore::remote::GrpcConnection::CreateChannel() const in grpc_connection.o "grpc::g_glip", referenced from: grpc::GrpcLibraryCodegen::GrpcLibraryCodegen(bool) in datastore.o grpc::GrpcLibraryCodegen::~GrpcLibraryCodegen() in datastore.o "grpc_impl::CompletionQueue::AsyncNextInternal(void*, bool, gpr_timespec)", referenced from: grpc_impl::CompletionQueue::Next(void, bool) in datastore.o "absl::lts_2020_02_25::optional_internal::throw_bad_optional_access()", referenced from: firebase::firestore::remote::ConnectivityMonitor::InvokeCallbacks(firebase::firestore::remote::ConnectivityMonitor::NetworkStatus) in connectivity_monitor.o std::1::function::func<firebase::firestore::core::FirestoreClient::GetDocumentsFromLocalCache(firebase::firestore::api::Query const&, std::1::unique_ptr<firebase::firestore::core::EventListener, std::1::default_delete<firebase::firestore::core::EventListener &&)::$_13, std::1::allocator<firebase::firestore::core::FirestoreClient::GetDocumentsFromLocalCache(firebase::firestore::api::Query const&, std::1::unique_ptr<firebase::firestore::core::EventListener, std::__1::default_delete<firebase::firestore::core::EventListener &&)::$_13>, void ()>::operator()() in firestore_client.o firebase::firestore::api::Query::ValidateNewFilter(firebase::firestore::core::Filter const&) const in query_core.o firebase::firestore::core::QueryListener::OnOnlineStateChanged(firebase::firestore::model::OnlineState) in query_listener.o firebase::firestore::core::SyncEngine::InitializeViewAndComputeSnapshot(firebase::firestore::core::Query const&, int) in sync_engine.o firebase::firestore::core::Transaction::CreateUpdatePrecondition(firebase::firestore::model::DocumentKey const&) in transaction.o "absl::lts_2020_02_25::StrAppend(std::1::basic_string<char, std::__1::char_traits, std::__1::allocator >, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&)", referenced from: firebase::firestore::remote::Datastore::GetAllowlistedHeadersAsString(std::1::multimap<grpc::string_ref, grpc::string_ref, std::1::less, std::1::allocator<std::1::pair<grpc::string_ref const, grpc::string_ref> > > const&) in datastore.o "grpc_impl::CompletionQueue::Shutdown()", referenced from: firebase::firestore::remote::Datastore::Shutdown() in datastore.o "absl::lts_2020_02_25::numbers_internal::FastIntToBuffer(unsigned int, char)", referenced from: absl::lts_2020_02_25::AlphaNum::AlphaNum(unsigned long) in collection_reference.o absl::lts_2020_02_25::AlphaNum::AlphaNum(unsigned int) in serializer.o "absl::lts_2020_02_25::strings_internal::CatPieces(std::initializer_list)", referenced from: std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintMessageField(absl::lts_2020_02_25::string_view, firebase::firestore::_google_protobuf_Timestamp const&, int, bool) in common.nanopb.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintMessageField(absl::lts_2020_02_25::string_view, firebase::firestore::_google_firestore_v1_TransactionOptions_ReadOnly const&, int, bool) in common.nanopb.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintMessageField(absl::lts_2020_02_25::string_view, firebase::firestore::_google_firestore_v1_TransactionOptions_ReadWrite const&, int, bool) in common.nanopb.o firebase::firestore::model::DatabaseId::ToString() const in database_id.o firebase::firestore::model::DeleteMutation::Rep::ToString() const in delete_mutation.o firebase::firestore::model::Document::Rep::ToString() const in document.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintMessageField(absl::lts_2020_02_25::string_view, firebase::firestore::_google_firestore_v1_Document_FieldsEntry const&, int, bool) in document.nanopb.o ... "absl::lts_2020_02_25::StrCat(absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&)", referenced from: firebase::firestore::nanopb::ByteString::ToHexString() const in byte_string.o firebase::firestore::core::FieldFilter::Rep::CanonicalId() const in field_filter.o firebase::firestore::model::(anonymous namespace)::ServerTimestampValue::ToString() const in field_value.o firebase::firestore::model::(anonymous namespace)::ReferenceValue::ToString() const in field_value.o firebase::firestore::local::LevelDbTransaction::ToString() in leveldb_transaction.o firebase::firestore::model::Precondition::ToString() const in precondition.o firebase::firestore::nanopb::internal::ToString(pb_bytes_array_s) in pretty_printing.o ... "absl::lts_2020_02_25::base_internal::ThrowStdOutOfRange(char const)", referenced from: absl::lts_2020_02_25::string_view::substr(unsigned long, unsigned long) const in field_path.o "absl::lts_2020_02_25::StrCat(absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&, absl::lts_2020_02_25::AlphaNum const&)", referenced from: std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintPrimitiveField<pb_bytes_array_s>(absl::lts_2020_02_25::string_view, pb_bytes_array_s, int, bool) in any.nanopb.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintPrimitiveField<pb_bytes_array_s>(absl::lts_2020_02_25::string_view, pb_bytes_array_s, int, bool) in common.nanopb.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintPrimitiveField(absl::lts_2020_02_25::string_view, bool, int, bool) in common.nanopb.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintMessageField(absl::lts_2020_02_25::string_view, firebase::firestore::_google_protobuf_Timestamp const&, int, bool) in common.nanopb.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintMessageField(absl::lts_2020_02_25::string_view, firebase::firestore::_google_firestore_v1_TransactionOptions_ReadOnly const&, int, bool) in common.nanopb.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintMessageField(absl::lts_2020_02_25::string_view, firebase::firestore::_google_firestore_v1_TransactionOptions_ReadWrite const&, int, bool) in common.nanopb.o std::1::basic_string<char, std::__1::char_traits, std::1::allocator > firebase::firestore::nanopb::PrintPrimitiveField<pb_bytes_array_s>(absl::lts_2020_02_25::string_view, pb_bytes_array_s*, int, bool) in document.nanopb.o ... ld: symbol(s) not found for architecture armv7 clang: error: linker command failed with exit code 1 (use -v to see invocation) ld: warning: dylib (/Users/Shared/store/build/ios/Release-iphoneos/abseil/absl.framework/absl) was built for newer iOS version (11.0) than being linked (10.0) ld: warning: dylib (/Users/Shared/store/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/grpcpp) was built for newer iOS version (11.0) than being linked (10.0) ld: warning: dylib (/Users/Shared/store/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/leveldb) was built for newer iOS version (11.0) than being linked (10.0) note: Using new build system note: Building targets in parallel note: Planning build note: Constructing build description

Encountered error while building for device.