簡體   English   中英

在 iOS Flutter 中構建版本時出現此錯誤

[英]I am getting this error when build release in iOS Flutter

在 Xcode 中構建/歸檔此項目時出現此錯誤。 (撲)

ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/FirebaseCore'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/GTMSessionFetcher'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/GoogleAPIClientForREST'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/GoogleToolboxForMac'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/Protobuf'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/firebase_ml_vision'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/flutter_native_image'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/image_picker'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/nanopb'
ld: warning: directory not found for option '-L/Users/gurleensethi/FlutterProjects/camera_ml/build/ios/Debug-iphoneos/path_provider'
ld: library not found for -lFirebaseCore
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我遇到了類似的問題,對我來說,問題是由於在 XCode 中打開 Runner.xcodeproj 而不是 Runner.xcodeworkspace 引起的。 對於使用 XCode 的人來說,這似乎很明顯,但也許這會在某個時候對某人有所幫助。

您似乎缺少庫嘗試:

  1. flutter clean
  2. flutter build ios

我花了幾個小時試圖修復未找到的庫上的類似錯誤。 最終這就是我能夠解決它的方式

  1. 在開始使用 Xcode Archive 之前,使用 flutter build iOS
  2. 將 IOS 部署目標更改為更高的目標 iOS 11.2 。 早些時候我有類似 8.0 的東西,它給出了上述所有錯誤。
  3. 確保 Xcode 中的 IOS 部署目標在 Project、Target 和 Pods 中相同

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM