aws-amplify / amplify-flutter

A declarative library with an easy-to-use interface for building Flutter applications on AWS.
https://docs.amplify.aws
Apache License 2.0
1.31k stars 242 forks source link

amplify_core not work if IOS platform target is 11.0 #278

Closed LaTrita97 closed 3 years ago

LaTrita97 commented 3 years ago

I've followed all the steps to set up AWS Amplify on Flutter, but if I set the platform target to 11.0, I get a series of errors that won't allow me to complete the build.

Here is my output:

Running "flutter pub get" in moneymi...                             0,8s
Launching lib/main.dart on iPhone 12 in debug mode...

Running pod install...                                              6,1s
Running Xcode build...                                                  
Xcode build done.                                           24,3s
Failed to build iOS app
Error output from Xcode build:
↳
    ** BUILD FAILED **

Xcode's output:
↳
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/Compression.swift:59:25: warning: 'withUnsafeBytes' is deprecated: use
    `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead
            return try data.withUnsafeBytes { (bytes:UnsafePointer<UInt8>) -> Data in
                            ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/Compression.swift:83:29: warning: initialization of 'UnsafeMutablePointer<UInt8>'
    results in a dangling pointer
                strm.next_out = UnsafeMutablePointer<UInt8>(&buffer)
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/Compression.swift:83:57: note: implicit argument conversion from '[UInt8]' to
    'UnsafeMutablePointer<UInt8>' produces a pointer valid only for the duration of the call to 'init(_:)'
                strm.next_out = UnsafeMutablePointer<UInt8>(&buffer)
                                                            ^~~~~~~
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/Compression.swift:83:57: note: use the 'withUnsafeMutableBufferPointer' method on
    Array in order to explicitly convert argument to buffer pointer valid for a defined scope
                strm.next_out = UnsafeMutablePointer<UInt8>(&buffer)
                                                            ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/Compression.swift:145:33: warning: initialization of
    'UnsafeMutablePointer<UInt8>' results in a dangling pointer
                    strm.next_out = UnsafeMutablePointer<UInt8>(&buffer)
                                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/Compression.swift:145:61: note: implicit argument conversion from '[UInt8]' to
    'UnsafeMutablePointer<UInt8>' produces a pointer valid only for the duration of the call to 'init(_:)'
                    strm.next_out = UnsafeMutablePointer<UInt8>(&buffer)
                                                                ^~~~~~~
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/Compression.swift:145:61: note: use the 'withUnsafeMutableBufferPointer' method
    on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
                    strm.next_out = UnsafeMutablePointer<UInt8>(&buffer)
                                                                ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/Compression.swift:140:14: warning: 'withUnsafeBytes' is deprecated: use
    `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead
            data.withUnsafeBytes { (ptr:UnsafePointer<UInt8>) -> Void in
                 ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/WebSocket.swift:282:30: warning: 'withUnsafeMutableBytes' is deprecated: use
    `withUnsafeMutableBytes<R>(_: (UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R` instead
                let _ = peerName.withUnsafeMutableBytes { (peerNamePtr: UnsafeMutablePointer<Int8>) in
                                 ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/WebSocket.swift:1326:14: warning: 'withUnsafeBytes' is deprecated: use
    `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead
            data.withUnsafeBytes { _ = CC_SHA1($0, CC_LONG(data.count), &digest) }
                 ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Starscream/Sources/Starscream/WebSocket.swift:1327:16: warning: 'init(bytes:)' is deprecated: use `init(_:)`
    instead
            return Data(bytes: digest).base64EncodedString()
                   ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:59:56: warning: 'openURL:' is
    deprecated: first deprecated in iOS 10.0 [-Wdeprecated-declarations]
                        [[UIApplication sharedApplication] openURL:url];
                                                           ^~~~~~~
                                                           openURL:options:completionHandler:
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support Files/local_auth/local_auth-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/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("");
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:87:32: warning:
    'LAErrorTouchIDNotEnrolled' is deprecated: first deprecated in iOS 11.0 - use LAErrorBiometryNotEnrolled [-Wdeprecated-declarations]
      } else if (authError.code == LAErrorTouchIDNotEnrolled) {
                                   ^
    In module 'LocalAuthentication' imported from
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:4:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/LocalAuthentication.
    framework/Headers/LAError.h:32:5: note: 'LAErrorTouchIDNotEnrolled' has been explicitly marked deprecated here
        LAErrorTouchIDNotEnrolled NS_ENUM_DEPRECATED(10_10, 10_13, 8_0, 11_0, "use LAErrorBiometryNotEnrolled") = kLAErrorTouchIDNotEnrolled,
        ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:111:34: warning:
    'LAErrorTouchIDNotAvailable' is deprecated: first deprecated in iOS 11.0 - use LAErrorBiometryNotAvailable [-Wdeprecated-declarations]
                                case LAErrorTouchIDNotAvailable:
                                     ^
    In module 'LocalAuthentication' imported from
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:4:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/LocalAuthentication.
    framework/Headers/LAError.h:29:5: note: 'LAErrorTouchIDNotAvailable' has been explicitly marked deprecated here
        LAErrorTouchIDNotAvailable NS_ENUM_DEPRECATED(10_10, 10_13, 8_0, 11_0, "use LAErrorBiometryNotAvailable") = kLAErrorTouchIDNotAvailable,
        ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:112:34: warning:
    'LAErrorTouchIDNotEnrolled' is deprecated: first deprecated in iOS 11.0 - use LAErrorBiometryNotEnrolled [-Wdeprecated-declarations]
                                case LAErrorTouchIDNotEnrolled:
                                     ^
    In module 'LocalAuthentication' imported from
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:4:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/LocalAuthentication.
    framework/Headers/LAError.h:32:5: note: 'LAErrorTouchIDNotEnrolled' has been explicitly marked deprecated here
        LAErrorTouchIDNotEnrolled NS_ENUM_DEPRECATED(10_10, 10_13, 8_0, 11_0, "use LAErrorBiometryNotEnrolled") = kLAErrorTouchIDNotEnrolled,
        ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:113:34: warning:
    'LAErrorTouchIDLockout' is deprecated: first deprecated in iOS 11.0 - use LAErrorBiometryLockout [-Wdeprecated-declarations]
                                case LAErrorTouchIDLockout:
                                     ^
    In module 'LocalAuthentication' imported from
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:4:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/LocalAuthentication.
    framework/Headers/LAError.h:37:5: note: 'LAErrorTouchIDLockout' has been explicitly marked deprecated here
        LAErrorTouchIDLockout NS_ENUM_DEPRECATED(10_11, 10_13, 9_0, 11_0, "use LAErrorBiometryLockout")
        ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:139:10: warning:
    'LAErrorTouchIDNotEnrolled' is deprecated: first deprecated in iOS 11.0 - use LAErrorBiometryNotEnrolled [-Wdeprecated-declarations]
        case LAErrorTouchIDNotEnrolled:
             ^
    In module 'LocalAuthentication' imported from
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:4:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/LocalAuthentication.
    framework/Headers/LAError.h:32:5: note: 'LAErrorTouchIDNotEnrolled' has been explicitly marked deprecated here
        LAErrorTouchIDNotEnrolled NS_ENUM_DEPRECATED(10_10, 10_13, 8_0, 11_0, "use LAErrorBiometryNotEnrolled") = kLAErrorTouchIDNotEnrolled,
        ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:149:10: warning:
    'LAErrorTouchIDLockout' is deprecated: first deprecated in iOS 11.0 - use LAErrorBiometryLockout [-Wdeprecated-declarations]
        case LAErrorTouchIDLockout:
             ^
    In module 'LocalAuthentication' imported from
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/local_auth-0.6.3+4/ios/Classes/FLTLocalAuthPlugin.m:4:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/LocalAuthentication.
    framework/Headers/LAError.h:37:5: note: 'LAErrorTouchIDLockout' has been explicitly marked deprecated here
        LAErrorTouchIDLockout NS_ENUM_DEPRECATED(10_11, 10_13, 9_0, 11_0, "use LAErrorBiometryLockout")
        ^
    7 warnings generated.
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+17/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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support Files/image_picker/image_picker-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIAlertView.h:27:12: note: 'UIAlertView' has been explicitly marked deprecated here
    @interface UIAlertView : UIView
               ^
    1 warning generated.
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+17/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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support Files/image_picker/image_picker-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/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/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+17/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/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+17/ios/Classes/FLTImagePickerPhotoAssetUtil.h:6:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/Photos.framework/Hea
    ders/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/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:13:5:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
        UILocalNotification *_launchNotification;
        ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:295:4:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
    - (UILocalNotification *)buildStandardUILocalNotification:(NSDictionary *)arguments {
       ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:751:30:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
    didReceiveLocalNotification:(UILocalNotification*)notification {
                                 ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:181:64:
    warning: 'scheduledLocalNotifications' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    getPendingNotificationRequestsWithCompletionHandler:] [-Wdeprecated-declarations]
        NSArray *notifications = [UIApplication sharedApplication].scheduledLocalNotifications;
                                                                   ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:242:68: note: 'scheduledLocalNotifications' has been explicitly marked deprecated here
    @property(nullable,nonatomic,copy) NSArray<UILocalNotification *> *scheduledLocalNotifications API_DEPRECATED("Use UserNotifications Framework's
    -[UNUserNotificationCenter getPendingNotificationRequestsWithCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);
                                                                       ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:184:9:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification* localNotification = [notifications objectAtIndex:i];
            ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:275:9:
    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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:277:34:
    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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:280:34:
    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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:283:34:
    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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIUserNotificationSettings.h:17:32: note: 'UIUserNotificationType' has been explicitly marked deprecated here
    typedef NS_OPTIONS(NSUInteger, UIUserNotificationType) {
                                   ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:285:9:
    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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here
    @interface UIUserNotificationSettings : NSObject
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:285:76:
    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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIUserNotificationSettings.h:44:12: note: 'UIUserNotificationSettings' has been explicitly marked deprecated here
    @interface UIUserNotificationSettings : NSObject
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:286:44:
    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/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/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/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:296:5:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
        UILocalNotification *notification = [[UILocalNotification alloc] init];
        ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:296:63:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
        UILocalNotification *notification = [[UILocalNotification alloc] init];
                                                                  ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:335:34:
    warning: 'UILocalNotificationDefaultSoundName' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's +[UNNotificationSound defaultSound]
    [-Wdeprecated-declarations]
            notification.soundName = UILocalNotificationDefaultSoundName;
                                     ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:62:30: note: 'UILocalNotificationDefaultSoundName' has been explicitly marked deprecated here
    UIKIT_EXTERN NSString *const UILocalNotificationDefaultSoundName API_DEPRECATED("Use UserNotifications Framework's +[UNNotificationSound defaultSound]", ios(4.0,
    10.0)) API_UNAVAILABLE(tvos);
                                 ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:351:9:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification * notification = [self buildStandardUILocalNotification:arguments];
            ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:352:44:
    warning: 'presentLocalNotificationNow:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:] [-Wdeprecated-declarations]
            [[UIApplication sharedApplication] presentLocalNotificationNow:notification];
                                               ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:236:1: note: 'presentLocalNotificationNow:' has been explicitly marked deprecated here
    - (void)presentLocalNotificationNow:(UILocalNotification *)notification API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:364:9:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification * notification = [self buildStandardUILocalNotification:arguments];
            ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:389:44:
    warning: 'scheduleLocalNotification:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:] [-Wdeprecated-declarations]
            [[UIApplication sharedApplication] scheduleLocalNotification:notification];
                                               ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:238:1: note: 'scheduleLocalNotification:' has been explicitly marked deprecated here
    - (void)scheduleLocalNotification:(UILocalNotification *)notification API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);  // copies notification
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:409:9:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification * notification = [self buildStandardUILocalNotification:arguments];
            ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:411:44:
    warning: 'scheduleLocalNotification:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:] [-Wdeprecated-declarations]
            [[UIApplication sharedApplication] scheduleLocalNotification:notification];
                                               ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:238:1: note: 'scheduleLocalNotification:' has been explicitly marked deprecated here
    - (void)scheduleLocalNotification:(UILocalNotification *)notification API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);  // copies notification
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:422:9:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification * notification = [self buildStandardUILocalNotification:arguments];
            ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:443:44:
    warning: 'scheduleLocalNotification:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:] [-Wdeprecated-declarations]
            [[UIApplication sharedApplication] scheduleLocalNotification:notification];
                                               ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:238:1: note: 'scheduleLocalNotification:' has been explicitly marked deprecated here
    - (void)scheduleLocalNotification:(UILocalNotification *)notification API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);  // copies notification
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:462:9:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification * notification = [self buildStandardUILocalNotification:arguments];
            ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:470:44:
    warning: 'scheduleLocalNotification:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:] [-Wdeprecated-declarations]
            [[UIApplication sharedApplication] scheduleLocalNotification:notification];
                                               ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:238:1: note: 'scheduleLocalNotification:' has been explicitly marked deprecated here
    - (void)scheduleLocalNotification:(UILocalNotification *)notification API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);  // copies notification
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:491:9:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification * notification = [self buildStandardUILocalNotification:arguments];
            ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:500:44:
    warning: 'scheduleLocalNotification:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:] [-Wdeprecated-declarations]
            [[UIApplication sharedApplication] scheduleLocalNotification:notification];
                                               ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:238:1: note: 'scheduleLocalNotification:' has been explicitly marked deprecated here
    - (void)scheduleLocalNotification:(UILocalNotification *)notification API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter
    addNotificationRequest:withCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);  // copies notification
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:512:68:
    warning: 'scheduledLocalNotifications' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    getPendingNotificationRequestsWithCompletionHandler:] [-Wdeprecated-declarations]
            NSArray *notifications = [UIApplication sharedApplication].scheduledLocalNotifications;
                                                                       ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:242:68: note: 'scheduledLocalNotifications' has been explicitly marked deprecated here
    @property(nullable,nonatomic,copy) NSArray<UILocalNotification *> *scheduledLocalNotifications API_DEPRECATED("Use UserNotifications Framework's
    -[UNUserNotificationCenter getPendingNotificationRequestsWithCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);
                                                                       ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:514:13:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
                UILocalNotification* localNotification = [notifications objectAtIndex:i];
                ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:517:52:
    warning: 'cancelLocalNotification:' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    removePendingNotificationRequestsWithIdentifiers:] [-Wdeprecated-declarations]
                    [[UIApplication sharedApplication] cancelLocalNotification:localNotification];
                                                       ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:239:1: note: 'cancelLocalNotification:' has been explicitly marked deprecated here
    - (void)cancelLocalNotification:(UILocalNotification *)notification API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter
    removePendingNotificationRequestsWithIdentifiers:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos);
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:531:44:
    warning: 'cancelAllLocalNotifications' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's -[UNUserNotificationCenter
    removeAllPendingNotificationRequests] [-Wdeprecated-declarations]
            [[UIApplication sharedApplication] cancelAllLocalNotifications];
                                               ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:240:1: note: 'cancelAllLocalNotifications' has been explicitly marked deprecated here
    - (void)cancelAllLocalNotifications API_DEPRECATED("Use UserNotifications Framework's -[UNUserNotificationCenter removeAllPendingNotificationRequests]", ios(4.0,
    10.0)) API_UNAVAILABLE(tvos);
    ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:740:9:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification *launchNotification = (UILocalNotification *)[launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
            ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:740:52:
    warning: 'UILocalNotification' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's UNNotificationRequest [-Wdeprecated-declarations]
            UILocalNotification *launchNotification = (UILocalNotification *)[launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
                                                       ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UILocalNotification.h:18:12: note: 'UILocalNotification' has been explicitly marked deprecated here
    @interface UILocalNotification : NSObject<NSCopying, NSCoding>
               ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:740:102
    : warning: 'UIApplicationLaunchOptionsLocalNotificationKey' is deprecated: first deprecated in iOS 10.0 - Use UserNotifications Framework's
    -[UNUserNotificationCenterDelegate didReceiveNotificationResponse:withCompletionHandler:] [-Wdeprecated-declarations]
            UILocalNotification *launchNotification = (UILocalNotification *)[launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
                                                                                                         ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support
    Files/flutter_local_notifications/flutter_local_notifications-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIApplication.h:504:50: note: 'UIApplicationLaunchOptionsLocalNotificationKey' has been explicitly marked deprecated here
    UIKIT_EXTERN UIApplicationLaunchOptionsKey const UIApplicationLaunchOptionsLocalNotificationKey     NS_SWIFT_NAME(localNotification) API_DEPRECATED("Use
    UserNotifications Framework's -[UNUserNotificationCenterDelegate didReceiveNotificationResponse:withCompletionHandler:]", ios(4.0, 10.0)) API_UNAVAILABLE(tvos); //
    userInfo contains a UILocalNotification
                                                     ^
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.m:750:1:
    warning: implementing deprecated method [-Wdeprecated-implementations]
    - (void)application:(UIApplication*)application
    ^
    In module 'Flutter' imported from
    /Users/simonebruziches/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_local_notifications-3.0.2/ios/Classes/FlutterLocalNotificationsPlugin.h:1:
    /Users/simonebruziches/Desktop/app/moneymi/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:98:1: note: method 'application:didReceiveLocalNotification:'
    declared here
    - (void)application:(UIApplication*)application
    ^
    35 warnings generated.
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/TOCropViewController/Objective-C/TOCropViewController/TOCropViewController.m:87:14: warning:
    'automaticallyAdjustsScrollViewInsets' is deprecated: first deprecated in iOS 11.0 - Use UIScrollView's contentInsetAdjustmentBehavior instead
    [-Wdeprecated-declarations]
            self.automaticallyAdjustsScrollViewInsets = NO;
                 ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support Files/TOCropViewController/TOCropViewController-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIViewController.h:252:34: note: 'automaticallyAdjustsScrollViewInsets' has been explicitly marked deprecated here
    @property(nonatomic,assign) BOOL automaticallyAdjustsScrollViewInsets API_DEPRECATED("Use UIScrollView's contentInsetAdjustmentBehavior instead",
    ios(7.0,11.0),tvos(7.0,11.0)); // Defaults to YES
                                     ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/TOCropViewController/Objective-C/TOCropViewController/TOCropViewController.m:1254:36: warning: 'topLayoutGuide'
    is deprecated: first deprecated in iOS 11.0 - Use view.safeAreaLayoutGuide.topAnchor instead of topLayoutGuide.bottomAnchor [-Wdeprecated-declarations]
                statusBarHeight = self.topLayoutGuide.length;
                                       ^
    In module 'UIKit' imported from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/Target Support Files/TOCropViewController/TOCropViewController-prefix.pch:2:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.2.sdk/System/Library/Frameworks/UIKit.framework/Head
    ers/UIViewController.h:480:58: note: 'topLayoutGuide' has been explicitly marked deprecated here
    @property(nonatomic,readonly,strong) id<UILayoutSupport> topLayoutGuide API_DEPRECATED("Use view.safeAreaLayoutGuide.topAnchor instead of
    topLayoutGuide.bottomAnchor", ios(7.0,11.0), tvos(7.0,11.0));
                                                             ^
    2 warnings generated.
    Command MergeSwiftModule failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AppSyncRealTimeClient/AppSyncRealTimeClient/Connection/AppSyncConnection/AppSyncSubscriptionConnection+ErrorHan
    dler.swift:9:8: error: compiling for iOS 9.0, but module 'Starscream' has a minimum deployment target of iOS 11.0:
    /Users/simonebruziches/Desktop/app/moneymi/build/ios/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulato
    r.swiftmodule
    import Starscream
           ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityUser.m:419:83: warning: undeclared
    selector 'startCustomAuthentication_v2' [-Wundeclared-selector]
                if (self.pool.isCustomAuth && [self.pool.delegate respondsToSelector:@selector(startCustomAuthentication_v2)]) {
                                                                                      ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityUser.m:420:79: warning: undeclared
    selector 'startCustomAuthentication_v2' [-Wundeclared-selector]
                    authenticationDelegate = [self.pool.delegate performSelector:@selector(startCustomAuthentication_v2)];
                                                                                  ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityUser.m:461:20: warning: unused variable
    'userAttributes' [-Wunused-variable]
            NSString * userAttributes = lastChallenge.challengeParameters[@"userAttributes"];
                       ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityUser.m:668:53: warning: undeclared
    selector 'startCustomAuthentication_v2' [-Wundeclared-selector]
                [self.pool.delegate respondsToSelector:@selector(startCustomAuthentication_v2)]) {
                                                        ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityUser.m:669:118: warning: undeclared
    selector 'startCustomAuthentication_v2' [-Wundeclared-selector]
                id<AWSCognitoIdentityCustomAuthentication> authenticationDelegate = [self.pool.delegate performSelector:@selector(startCustomAuthentication_v2)];
                                                                                                                         ^
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityUser.m:1199:33: warning:
    'getMultiFactorAuthenticationCode:mfaCodeCompletionSource:' is deprecated: Use `getMultiFactorAuthenticationCode_v2:mfaCodeCompletionSource:` instead
    [-Wdeprecated-declarations]
            [authenticationDelegate getMultiFactorAuthenticationCode:authenticationInput mfaCodeCompletionSource:mfaCompletionSource];
                                    ^
    In file included from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityUser.m:8:
    In file included from /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider.h:43:
    /Users/simonebruziches/Desktop/app/moneymi/ios/Pods/AWSCognitoIdentityProvider/AWSCognitoIdentityProvider/AWSCognitoIdentityUserPool.h:422:122: note:
    'getMultiFactorAuthenticationCode:mfaCodeCompletionSource:' has been explicitly marked deprecated here
                     mfaCodeCompletionSource: (AWSTaskCompletionSource<NSString *> *) mfaCodeCompletionSource __attribute__((deprecated("Use
                     `getMultiFactorAuthenticationCode_v2:mfaCodeCompletionSource:` instead")));
                                                                                                                             ^
    6 warnings generated.
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    note: Using new build system
    note: Building targets in parallel
    note: Planning build
    note: Constructing build description

Could not build the application for the simulator.
Error launching application on iPhone 12.

The libraries I added are:

amplify_core: ^0.0.1-dev.4
amplify_auth_cognito: ^0.0.1-dev.4
amplify_analytics_pinpoint: ^0.0.1-dev.4

Flutter doctor printed this:

[✓] Flutter (Channel beta, 1.23.0-18.1.pre, on macOS 11.1 20C69 x86_64, locale it)

[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
[✓] Xcode - develop for iOS and macOS (Xcode 12.2)
[✓] Chrome - develop for the web
[✓] Android Studio (version 3.6)
[✓] Connected device (3 available)
    ! Error: iPhone di Giuseppe is not connected. Xcode will continue when iPhone di Giuseppe is connected. (code -13)

• No issues found!

On Android, I can start the app, but on the IOS simulator and on a real IOS device not.

I have followed this guide -> https://aws.amazon.com/it/getting-started/hands-on/build-flutter-app-amplify/module-two/

I've also tried to remove ios/Podfile, to deintegrate pod and then to pod install, but all this not working.

Please can someone help me to understand what I wrong?

jamesonwilliams commented 3 years ago

@LaTrita97 You can wrap your technical content (logs, code, etc.) in "fenced" code blocks. They'll be more readable.

``` This will render ```

Like this
LaTrita97 commented 3 years ago

@jamesonwilliams Now it is more readable you are right, sorry but this is the first time I write on GitHub, thanks for the advice.

jamesonwilliams commented 3 years ago

That's awesome, welcome to GitHub, @LaTrita97! Formatting looks great. According to the Amplify iOS documentation, iOS 11 is supported. Flutter team should be back from the holidays early next week.

Amplifiyer commented 3 years ago

@LaTrita97 Welcome to github and Amplify!

Can you try setting your iOS Deployment target to 11.0 as well in xCode and then in your iOS folder of flutter app, run

pod deintegrate
rm Podfile.lock
cd ..
flutter clean
flutter pub get
LaTrita97 commented 3 years ago

I've tried this, but not works.

I've also tried to create a new project, only adding amplify_core library and changing the target platform IOS from 9.0 to 11.0, but I receive the same error.

Amplifiyer commented 3 years ago

@LaTrita97, how are you changing the deployment target for your application? In file Runner.xcodeproj/pbxproj what are the several values for key IPHONEOS_DEPLOYMENT_TARGET

LaTrita97 commented 3 years ago

@Amplifiyer I uncomment the second line in ios/Podfile and I changed the values of the dropdown on Xcode in Runner and Pod.

Excuse me but I don't have a background in IOS, I'll also try to find something on the web, I see that someone has changed the value even in the pod install script inside an ios/Podfile.

In otherwise you have tips for me on how to change right the minimum deployment target on IOS?

LaTrita97 commented 3 years ago

@Amplifiyer I've managed to start the app, I followed these steps (I followed the first response and not the second), and I even following your advice to check IPHONEOS_DEPLOYMENT_TARGET in Runner.xcodeproj/pbxproj and there the IPHONEOS_DEPLOYMENT_TARGET wasn't changed.

Later on, I'll try to add again AWS amplify to my project from the terminal with amplify_init.

@Amplifiyer If you have some advice for me, If you think he did something wrong or did something I shouldn't have done, I gladly listen to you.

Anyhow, thanks for your help, I think that I can close this issue, was my fault🤦🏻‍♂️.