颤振:错误:找不到吸气剂:“暂停”。案例 AppLifecycleState.suspending
Posted
技术标签:
【中文标题】颤振:错误:找不到吸气剂:“暂停”。案例 AppLifecycleState.suspending【英文标题】:Flutter: Error: Getter not found: 'suspending'. case AppLifecycleState.suspending 【发布时间】:2020-04-05 18:31:12 【问题描述】:我刚刚在 Stable Channel 上升级了 Flutter,并在尝试启动应用程序(在本地 ios 模拟器上)时获得了以下 StackTrace。使用flutter test
运行单元测试也会受到影响。
Launching lib/main.dart on iPhone 8 in debug mode...
Compiler message:
../../flutter/.pub-cache/hosted/pub.dartlang.org/native_device_orientation-0.1.2/lib/native_device_orientation.dart:149:30: Error: Getter not found: 'suspending'.
case AppLifecycleState.suspending:
^^^^^^^^^^
Target kernel_snapshot failed: Exception: Errors during snapshot creation: null
Failed to build bundle.
Error launching application on iPhone 8.
颤振医生-v
[✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Mac OS X 10.14.6 18G1012, locale de-DE)
• Flutter version 1.12.13+hotfix.5
• Framework revision 27321ebbad (33 hours ago), 2019-12-10 18:15:01 -0800
• Engine revision 2994f7e1e6
• Dart version 2.7.0
[✓] android toolchain - develop for Android devices (Android SDK version 29.0.0-rc2)
• Android SDK at ...Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-29, build-tools 29.0.0-rc2
• Java binary at: .../bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS (Xcode 11.3)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 11.3, Build version 11C29
• CocoaPods version 1.6.0
[✓] Android Studio (version 3.5)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 42.1.1
• Dart plugin version 191.8593
• Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
[✓] Connected device (1 available)
• iPhone 8 • ios • com.apple.CoreSimulator.SimRuntime.iOS-13-3 (simulator)
• No issues found!
有人有解决办法吗?
【问题讨论】:
【参考方案1】:我遇到了同样的问题。
请查看 native_device_orientation 包的更新日志:
“重大更改以支持 AppLifecycleState.suspended 已更改为 AppLifecycleState.detached 的事实。”
您的一个包可能依赖于这个库。在这里你可以找到包列表https://pub.dev/packages?q=dependency%3Anative_device_orientation。
对我来说是 qr_mobile_vision。
【讨论】:
我没有使用您链接的任何软件包,但仍然出现此错误。有什么想法吗? 没关系,找到原因并提交了新的答案。【参考方案2】:为了让答案的范围比@x23b5已经提交的答案稍微宽一些,确实是由这个PR在11月4日进入flutter主频道引起的。
PR 将枚举:AppLifecycleState.suspending
更新为 AppLifecycleState.detached
。
您可能在依赖此枚举的插件之一中使用了依赖项,例如 one of these - 在这种情况下,您的调试错误消息会将您指向该插件 - 然后只需访问其 github 存储库并查看作者是否已发布补丁。如果没有,请随意编辑该行并为他们提交 PR。
另一方面,如果您手动编写了利用 AppLifecycleState 的代码(如我的案例),请搜索您的代码并手动将挂起更新为分离并重新启动颤振。
【讨论】:
你节省了我的时间,我被这个问题弄得筋疲力尽。 我有数百个依赖项;我该怎么办? 为AppLifecycleState.suspending
准备代码库和依赖文件夹。【参考方案3】:
有同样的问题。将 qr_mobile_vision 更新到 0.3.1 版本似乎已经解决了问题。
【讨论】:
以上是关于颤振:错误:找不到吸气剂:“暂停”。案例 AppLifecycleState.suspending的主要内容,如果未能解决你的问题,请参考以下文章
为啥 TForm.Handle 是一个吸气剂而不是一个字段?