找不到Flutter shared_preferences模块-iOS Xcode构建

时间:2020-07-29 14:04:07

标签: ios xcode flutter sharedpreferences

我在Flutter中使用shared_preferences依赖项。

构建Xcode(产品->归档-通用目标)失败

module 'shared_preferences' not found

Build in Xcode fails

我尝试了flutter cleanflutter pub cache repair,并尝试将Flutter lib /移到新项目(flutter create .)中,并使用较旧的Xcode版本(11.4.1)进行了构建。目前,我有12.0 Beta 3。

奇怪的是,从我的IDE(IntelliJ)的Emulator中运行的效果很好,没有错误。

IDE Emulator dart main runs OK

这些是我的依赖项(pubspec.yaml)

dependencies:
  flutter:
    sdk: flutter
  http: ^0.12.2
  intl: any
  flutter_spinkit: ^4.1.2
  redux: any
  flutter_redux: any
  redux_thunk: any
  shared_preferences: 0.5.1+2

2 个答案:

答案 0 :(得分:3)

在我的情况下,问题是我从Project.xcodeproj而不是Project.xcworkspace打开Xcode项目。

答案 1 :(得分:0)

如果您将项目方案模式用作调试,则将方案更改为从调试中释放。

产品->方案->调试以发布。

,然后再次尝试归档项目。