пакет multi_image_picker ломается iOS сборка - PullRequest
2 голосов
/ 06 августа 2020

Добавление последней версии multi_image_picker (4.7.10) в pubspe c .yaml нарушает сборку iOS моего приложения flutter даже без добавления кода в проект.

сборка флаттера iOS

Xcode's output:
↳
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.m:101:9: warning:
    'dispatch_queue_set_specific' is only available on iOS 5.0 or newer [-Wunguarded-availability]
            dispatch_queue_set_specific(_queue, kDispatchQueueSpecificKey, (__bridge void *)self, NULL);
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    In module 'Foundation' imported from /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.h:9:
    In module 'CoreFoundation' imported from
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/System/Library/Frameworks/Foundation.framework
    /Headers/Foundation.h:6:
    In module 'Dispatch' imported from
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/System/Library/Frameworks/CoreFoundation.frame
    work/Headers/CFStream.h:20:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/usr/include/dispatch/queue.h:1498:1: note:
    'dispatch_queue_set_specific' has been marked as being introduced in iOS 5.0 here, but the deployment target is iOS 4.3.0
    dispatch_queue_set_specific(dispatch_queue_t queue, const void *key,
    ^
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.m:101:9: note: enclose
    'dispatch_queue_set_specific' in an @available check to silence this warning
            dispatch_queue_set_specific(_queue, kDispatchQueueSpecificKey, (__bridge void *)self, NULL);
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.m:184:54: warning:
    'dispatch_get_specific' is only available on iOS 5.0 or newer [-Wunguarded-availability]
        FMDatabaseQueue *currentSyncQueue = (__bridge id)dispatch_get_specific(kDispatchQueueSpecificKey);
                                                         ^~~~~~~~~~~~~~~~~~~~~
    In module 'Foundation' imported from /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.h:9:
    In module 'CoreFoundation' imported from
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/System/Library/Frameworks/Foundation.framework
    /Headers/Foundation.h:6:
    In module 'Dispatch' imported from
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/System/Library/Frameworks/CoreFoundation.frame
    work/Headers/CFStream.h:20:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/usr/include/dispatch/queue.h:1554:1: note:
    'dispatch_get_specific' has been marked as being introduced in iOS 5.0 here, but the deployment target is iOS 4.3.0
    dispatch_get_specific(const void *key);
    ^
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.m:184:54: note: enclose
    'dispatch_get_specific' in an @available check to silence this warning
        FMDatabaseQueue *currentSyncQueue = (__bridge id)dispatch_get_specific(kDispatchQueueSpecificKey);
                                                         ^~~~~~~~~~~~~~~~~~~~~
    2 warnings generated.
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabase.m:1486:15: warning:
    'sqlite3_wal_checkpoint_v2' is only available on iOS 5.0 or newer [-Wunguarded-availability]
        int err = sqlite3_wal_checkpoint_v2(_db, dbName, checkpointMode, logFrameCount, checkpointCount);
                  ^~~~~~~~~~~~~~~~~~~~~~~~~
    In module 'SQLite3' imported from /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabase.m:8:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/usr/include/sqlite3.h:8428:16: note:
    'sqlite3_wal_checkpoint_v2' has been marked as being introduced in iOS 5.0 here, but the deployment target is iOS 4.3.0
    SQLITE_API int sqlite3_wal_checkpoint_v2(
                   ^
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabase.m:1486:15: note: enclose
    'sqlite3_wal_checkpoint_v2' in an @available check to silence this warning
        int err = sqlite3_wal_checkpoint_v2(_db, dbName, checkpointMode, logFrameCount, checkpointCount);
                  ^~~~~~~~~~~~~~~~~~~~~~~~~
    1 warning generated.
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.m:101:9: warning:
    'dispatch_queue_set_specific' is only available on iOS 5.0 or newer [-Wunguarded-availability]
            dispatch_queue_set_specific(_queue, kDispatchQueueSpecificKey, (__bridge void *)self, NULL);
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    In module 'Foundation' imported from /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.h:9:
    In module 'CoreFoundation' imported from
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/System/Library/Frameworks/Foundation.framework
    /Headers/Foundation.h:6:
    In module 'Dispatch' imported from
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/System/Library/Frameworks/CoreFoundation.frame
    work/Headers/CFStream.h:20:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/usr/include/dispatch/queue.h:1498:1: note:
    'dispatch_queue_set_specific' has been marked as being introduced in iOS 5.0 here, but the deployment target is iOS 4.3.0
    dispatch_queue_set_specific(dispatch_queue_t queue, const void *key,
    ^
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.m:101:9: note: enclose
    'dispatch_queue_set_specific' in an @available check to silence this warning
            dispatch_queue_set_specific(_queue, kDispatchQueueSpecificKey, (__bridge void *)self, NULL);
            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.m:184:54: warning:
    'dispatch_get_specific' is only available on iOS 5.0 or newer [-Wunguarded-availability]
        FMDatabaseQueue *currentSyncQueue = (__bridge id)dispatch_get_specific(kDispatchQueueSpecificKey);
                                                         ^~~~~~~~~~~~~~~~~~~~~
    In module 'Foundation' imported from /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.h:9:
    In module 'CoreFoundation' imported from
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/System/Library/Frameworks/Foundation.framework
    /Headers/Foundation.h:6:
    In module 'Dispatch' imported from
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/System/Library/Frameworks/CoreFoundation.frame
    work/Headers/CFStream.h:20:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/usr/include/dispatch/queue.h:1554:1: note:
    'dispatch_get_specific' has been marked as being introduced in iOS 5.0 here, but the deployment target is iOS 4.3.0
    dispatch_get_specific(const void *key);
    ^
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabaseQueue.m:184:54: note: enclose
    'dispatch_get_specific' in an @available check to silence this warning
        FMDatabaseQueue *currentSyncQueue = (__bridge id)dispatch_get_specific(kDispatchQueueSpecificKey);
                                                         ^~~~~~~~~~~~~~~~~~~~~
    2 warnings generated.
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabase.m:1486:15: warning:
    'sqlite3_wal_checkpoint_v2' is only available on iOS 5.0 or newer [-Wunguarded-availability]
        int err = sqlite3_wal_checkpoint_v2(_db, dbName, checkpointMode, logFrameCount, checkpointCount);
                  ^~~~~~~~~~~~~~~~~~~~~~~~~
    In module 'SQLite3' imported from /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabase.m:8:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.6.sdk/usr/include/sqlite3.h:8428:16: note:
    'sqlite3_wal_checkpoint_v2' has been marked as being introduced in iOS 5.0 here, but the deployment target is iOS 4.3.0
    SQLITE_API int sqlite3_wal_checkpoint_v2(
                   ^
    /Users/atef/development/flutter_projects/app/app/ios/Pods/FMDB/src/fmdb/FMDatabase.m:1486:15: note: enclose
    'sqlite3_wal_checkpoint_v2' in an @available check to silence this warning
        int err = sqlite3_wal_checkpoint_v2(_db, dbName, checkpointMode, logFrameCount, checkpointCount);
                  ^~~~~~~~~~~~~~~~~~~~~~~~~
    1 warning generated.
    /Users/atef/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.1/ios/Classes/FLTFirebaseAuthPlugin.m:171:40: warning: incompatible pointer to
    integer conversion assigning to 'BOOL' (aka 'signed char') from 'id _Nullable' [-Wint-conversion]
        actionCodeSettings.handleCodeInApp = call.arguments[@"handleCodeInApp"];
                                           ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    /Users/atef/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.1/ios/Classes/FLTFirebaseAuthPlugin.m:174:47: warning: incompatible pointer to
    integer conversion sending 'id _Nullable' to parameter of type 'BOOL' (aka 'signed char') [-Wint-conversion]
                            installIfNotAvailable:call.arguments[@"androidInstallIfNotAvailable"]
                                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    In file included from /Users/atef/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.1/ios/Classes/FLTFirebaseAuthPlugin.m:8:
    In file included from /Users/atef/development/flutter_projects/app/app/ios/Pods/Headers/Private/Firebase/Firebase.h:33:
    In file included from /Users/atef/development/flutter_projects/app/app/ios/Pods/Headers/Private/FirebaseAuth/FirebaseAuth.h:19:
    /Users/atef/development/flutter_projects/app/app/ios/Pods/Headers/Private/FirebaseAuth/FIRActionCodeSettings.h:84:37: note:
    passing argument to parameter 'installIfNotAvailable' here
            installIfNotAvailable:(BOOL)installIfNotAvailable
                                        ^
    /Users/atef/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.1/ios/Classes/FLTFirebaseAuthPlugin.m:77:1: warning: conflicting return type in
    implementation of 'application:didReceiveRemoteNotification:fetchCompletionHandler:': 'BOOL' (aka 'signed char') vs 'bool'
    [-Wmismatched-return-types]
    - (bool)application:(UIApplication *)application
    ^  ~~~~
    In module 'Flutter' imported from /Users/atef/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.16.1/ios/Classes/FLTFirebaseAuthPlugin.h:5:
    /Users/atef/development/flutter_projects/app/app/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:91:1: note: previous
    definition is here
    - (BOOL)application:(UIApplication*)application
    ^  ~~~~
    3 warnings generated.
    ld: warning: Could not find or use auto-linked library 'swiftCoreFoundation'
    ld: warning: Could not find or use auto-linked library 'swiftCompatibility50'
    ld: warning: Could not find or use auto-linked library 'swiftCore'
    ld: warning: Could not find or use auto-linked library 'swiftQuartzCore'
    ld: warning: Could not find or use auto-linked library 'swiftCoreGraphics'
    ld: warning: Could not find or use auto-linked library 'swiftDarwin'
    ld: warning: Could not find or use auto-linked library 'swiftUIKit'
    ld: warning: Could not find or use auto-linked library 'swiftFoundation'
    ld: warning: Could not find or use auto-linked library 'swiftsimd'
    ld: warning: Could not find or use auto-linked library 'swiftObjectiveC'
    ld: warning: Could not find or use auto-linked library 'swiftMetal'
    ld: warning: Could not find or use auto-linked library 'swiftCoreImage'
    ld: warning: Could not find or use auto-linked library 'swiftCompatibilityDynamicReplacements'
    ld: warning: Could not find or use auto-linked library 'swiftDispatch'
    ld: warning: Could not find or use auto-linked library 'swiftAVFoundation'
    ld: warning: Could not find or use auto-linked library 'swiftCoreMedia'
    ld: warning: Could not find or use auto-linked library 'swiftCoreAudio'
    ld: warning: Could not find or use auto-linked library 'swiftCoreMIDI'
    ld: warning: Could not find or use auto-linked library 'swiftPhotos'
    ld: warning: Could not find or use auto-linked library 'swiftCoreLocation'
    Undefined symbols for architecture arm64:
      "nominal type descriptor for Swift.UInt8", referenced from:
          _symbolic _____y_____G s23_ContiguousArrayStorageC s5UInt8V in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "Swift._StringGuts.grow(Swift.Int) -> ()", referenced from:
          partial apply forwarder for closure #1 () -> () in closure #1 (Foundation.Data?, Swift.String?, __C.UIImageOrientation, [Swift.AnyHashable :
          Any]?) -> () in closure #1 (__C.PHAsset, Swift.Int, Swift.UnsafeMutablePointer<ObjectiveC.ObjCBool>) -> () in
          multi_image_picker.SwiftMultiImagePickerPlugin.readPhotosMetadata(result: __C.PHFetchResult<__C.PHAsset>, operationQueue: __C.NSOperationQueue,
          callback: (Any?) -> ()) -> () in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "protocol conformance descriptor for Swift.String : Swift.StringProtocol in Swift", referenced from:
          lazy protocol witness table accessor for type Swift.String and conformance Swift.String : Swift.StringProtocol in Swift in
          libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "static Foundation.CharacterSet.whitespacesAndNewlines.getter : Foundation.CharacterSet", referenced from:
          function signature specialization <Arg[1] = Dead> of multi_image_picker.SwiftMultiImagePickerPlugin.hexStringToUIColor(hex: Swift.String) ->
          __C.UIColor in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "(extension in Foundation):Swift.StringProtocol.trimmingCharacters(in: Foundation.CharacterSet) -> Swift.String", referenced from:
          function signature specialization <Arg[1] = Dead> of multi_image_picker.SwiftMultiImagePickerPlugin.hexStringToUIColor(hex: Swift.String) ->
          __C.UIColor in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "Swift.String.uppercased() -> Swift.String", referenced from:
          function signature specialization <Arg[1] = Dead> of multi_image_picker.SwiftMultiImagePickerPlugin.hexStringToUIColor(hex: Swift.String) ->
          __C.UIColor in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "Swift.String.hasPrefix(Swift.String) -> Swift.Bool", referenced from:
          function signature specialization <Arg[1] = Dead> of multi_image_picker.SwiftMultiImagePickerPlugin.hexStringToUIColor(hex: Swift.String) ->
          __C.UIColor in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "Swift.String.remove(at: Swift.String.Index) -> Swift.Character", referenced from:
          function signature specialization <Arg[1] = Dead> of multi_image_picker.SwiftMultiImagePickerPlugin.hexStringToUIColor(hex: Swift.String) ->
          __C.UIColor in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "Swift.String.count.getter : Swift.Int", referenced from:
          function signature specialization <Arg[1] = Dead> of multi_image_picker.SwiftMultiImagePickerPlugin.hexStringToUIColor(hex: Swift.String) ->
          __C.UIColor in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "static Swift._DictionaryStorage.resize(original: Swift.__RawDictionaryStorage, capacity: Swift.Int, move: Swift.Bool) ->
      Swift._DictionaryStorage<A, B>", referenced from:
          generic specialization <__C.NSAttributedStringKey, Swift.AnyObject> of Swift._NativeDictionary.copyAndResize(capacity: Swift.Int) -> () in
          libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
          generic specialization <__C.NSAttributedStringKey, Swift.AnyObject> of Swift._NativeDictionary.resize(capacity: Swift.Int) -> () in
          libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "Swift.KEY_TYPE_OF_DICTIONARY_VIOLATES_HASHABLE_REQUIREMENTS(Any.Type) -> Swift.Never", referenced from:
          generic specialization <__C.NSAttributedStringKey, Swift.AnyObject> of Swift._NativeDictionary.mutatingFind(_: A, isUnique: Swift.Bool) ->
          (bucket: Swift._HashTable.Bucket, found: Swift.Bool) in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "Swift._StringObject.sharedUTF8.getter : Swift.UnsafeBufferPointer<Swift.UInt8>", referenced from:
          generic specialization <serialized, Swift.String.UTF8View> of Swift.Slice.subscript.getter : (A.Index) -> A.Element in
          libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
          function signature specialization <Arg[1] = Dead> of static Swift.String._copying(Swift.Substring) -> Swift.String in
          libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "Swift.String.UTF8View._foreignIndex(after: Swift.String.Index) -> Swift.String.Index", referenced from:
          generic specialization <serialized, Swift.Substring.UTF8View> of Swift._copyCollectionToContiguousArray<A where A: Swift.Collection>(A) ->
          Swift.ContiguousArray<A.Element> in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
      "method descriptor for Swift._HasCustomAnyHashableRepresentation._toCustomAnyHashable() -> Swift.AnyHashable?", referenced from:
          l_got.$ss35_HasCustomAnyHashableRepresentationP03_tobcD0s0cD0VSgyFTq in libBSImagePicker.a(AlbumCell.o)
          l_got.$ss35_HasCustomAnyHashableRepresentationP03_tobcD0s0cD0VSgyFTq in libmulti_image_picker.a(SwiftMultiImagePickerPlugin.o)
    ld: symbol(s) not found for architecture arm64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)
    note: Using new build system
    note: Building targets in parallel
    note: Planning build
    note: Constructing build description
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 6.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'Reachability' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 4.3, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'nanopb' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 5.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'leveldb-library' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'gRPC-C++-gRPCCertificates-Cpp' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'abseil' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'GTMSessionFetcher' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 4.3, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'FMDB' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'BoringSSL-GRPC' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'AppAuth' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'gRPC-Core' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'gRPC-C++' from project 'Pods')
    warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to
    13.6.99. (in target 'GTMAppAuth' from project 'Pods')


доктор флаттера

Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.17.5, on Mac OS X 10.15.5 19F101, locale en-IL)
 
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
[✓] Xcode - develop for iOS and macOS (Xcode 11.6)
[✓] Android Studio (version 4.0)
[✓] Connected device (1 available)

• No issues found!

Я думаю, что это проблема в настройках моей сборки Xcode, но У меня нет опыта, и я не знаю, с чего начать. Я попытался перейти на сборку Xcode Legacy вместо новой системы сборки, и это тоже не сработало.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...