简体   繁体   中英

Flutter: Undefined symbols for architecture arm64

After migrating to null-safety and flutter 2 I get problem with ios build:
I run flutter clean; rm ios/Podfile.lock pubspec.lock; rm -rf ios/Pods ios/Runner.xcworkspace; flutter run --flavor dev -t lib/main_dev.dart flutter clean; rm ios/Podfile.lock pubspec.lock; rm -rf ios/Pods ios/Runner.xcworkspace; flutter run --flavor dev -t lib/main_dev.dart

and got this logcat:

    Undefined symbols for architecture arm64:
      "_OBJC_CLASS_$_FlutterStandardTypedData", referenced from:
          objc-class-ref in google_maps_flutter(GoogleMapController.o)
      "_OBJC_CLASS_$_FlutterStandardMessageCodec", referenced from:
          objc-class-ref in google_maps_flutter(GoogleMapController.o)
      "_OBJC_CLASS_$_FlutterError", referenced from:
          objc-class-ref in firebase_core(FLTFirebasePlugin.o)
          objc-class-ref in google_maps_flutter(FLTGoogleMapsPlugin.o)
          objc-class-ref in google_maps_flutter(FLTGoogleMapTileOverlayController.o)
          objc-class-ref in google_maps_flutter(GoogleMapMarkerController.o)
          objc-class-ref in google_maps_flutter(GoogleMapController.o)
          objc-class-ref in onesignal_flutter(OSFlutterCategories.o)
      "_OBJC_CLASS_$_FlutterMethodChannel", referenced from:
          objc-class-ref in firebase_core(FLTFirebaseCorePlugin.o)
          objc-class-ref in firebase_crashlytics(FLTFirebaseCrashlyticsPlugin.o)
          objc-class-ref in google_maps_flutter(GoogleMapController.o)
          objc-class-ref in onesignal_flutter(OSFlutterOutcomeEventsController.o)
          objc-class-ref in onesignal_flutter(OneSignalPlugin.o)
          objc-class-ref in onesignal_flutter(OSFlutterTagsController.o)
          objc-class-ref in onesignal_flutter(OSFlutterInAppMessagesController.o)
          ...
      "_FlutterMethodNotImplemented", referenced from:
          -[FLTFirebaseCorePlugin handleMethodCall:result:] in firebase_core(FLTFirebaseCorePlugin.o)
          -[FLTFirebaseCrashlyticsPlugin handleMethodCall:result:] in firebase_crashlytics(FLTFirebaseCrashlyticsPlugin.o)
          ___61-[FLTTileProviderController requestTileForX:y:zoom:receiver:]_block_invoke in google_maps_flutter(FLTGoogleMapTileOverlayController.o)
          -[FLTGoogleMapController onMethodCall:result:] in google_maps_flutter(GoogleMapController.o)
          -[OSFlutterOutcomeEventsController handleMethodCall:result:] in onesignal_flutter(OSFlutterOutcomeEventsController.o)
          -[OneSignalPlugin handleMethodCall:result:] in onesignal_flutter(OneSignalPlugin.o)
          -[OSFlutterTagsController handleMethodCall:result:] in onesignal_flutter(OSFlutterTagsController.o)
          ...
    ld: symbol(s) not found for architecture arm64
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

full log is here

What I try and it did't help:

  • pod deintegrate && rm Podfile.lock && pod install --repo-update
  • set up platform:ios, '12.0' in Podfile
  • set up manually architectures in Build Settings as arm64

This problem I have on two flutter projects, but I have no idea how to fix it.

UPD: It's look like a problem with OneSignal https://github.com/OneSignal/OneSignal-Flutter-SDK/issues/389

UPD2:
sample project with problem https://github.com/rovkinmax/OneSignalSDKProblem

I found solution for this problem:

  1. Set up selected configurations as None

在此处输入图像描述

  1. Check that check box is turn on

在此处输入图像描述

More info here and here

I also faced this problem and fixed with

Build setting -> search Valid Architecture:

Remove armv7 from the list

If Xcode version > 12.0 Then go project or target -> Build Settings -> Excluded Architecture

Then Add armv7

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM