1

我尝试使用地理定位器获取当前位置,但 Xcode(在 M1 Mac/arm64 上)无法检测到该模块。经过一番研究,我简单地更改了插件并集成了推荐的酒吧定位器。然而,在那之后,同样的错误仍然发生。也找不到此模块。

↳
    objc[7998]: Class AMSupportURLConnectionDelegate is implemented in both /usr/lib/libamsupport.dylib (0x1eab43130) and
    /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x1080f02c8). One of the two will be used. Which one is undefined.
    objc[7998]: Class AMSupportURLSession is implemented in both /usr/lib/libamsupport.dylib (0x1eab43180) and
    /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x1080f0318). One of the two will be used. Which one is undefined.
    ** BUILD FAILED **


Xcode's output:
↳
    /Users/campermike/Documents/projects/cnow/ios/Runner/GeneratedPluginRegistrant.m:18:9: fatal error: module 'location' not found
    @import location;
     ~~~~~~~^~~~~~~~
4

1 回答 1

0

我最近遇到了类似的错误,所以如果你想节省时间,请按照我的方法。你需要crate new project with same bundle id in your m1 Mac machine and just replace your codes & ios & Android mandatory files. Because all errors are architecture related.

但在此之前,请做以下事情:

1.删​​除发布缓存。
2.Flutter clean
3.删除xcode派生数据。

于 2021-12-12T16:19:33.803 回答