颤振:错误:找不到 getter:"挂起"。案例应用生命周期状态.挂起



我刚刚在稳定通道上升级了 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!

有人有解决方案吗?

我遇到了同样的问题。

请查看native_device_orientation包的更新日志:

"中断性更改,以支持 AppLifecycle State.suspended 已更改为 AppLifecycle State.detached 的事实。

您的一个包可能依赖于此库。在这里,您可以找到 https://pub.dev/packages?q=dependency%3Anative_device_orientation 软件包的列表。

对我来说,这很qr_mobile_vision。

为了使答案的范围比@x23b5已经提交的答案范围稍广,它确实是由 11 月 4 日这个 PR 进入颤振主频道引起的。

PR 更新了枚举:AppLifecycleState.suspendingAppLifecycleState.detached.

您可能正在其中一个依赖于此枚举的插件中使用依赖项,例如其中一个 - 在这种情况下,您的调试错误消息会将您指向该插件 - 然后只需访问其 github 存储库并查看作者是否发布了补丁。如果没有,请随意编辑该行并为其提交 PR。

另一方面,如果您手动编写了利用 AppLifecycle State 的代码(如我的情况(,请在代码中搜索它并手动将挂起更新为分离并重新启动颤振。

有同样的问题。qr_mobile_vision更新到版本 0.3.1 似乎已经解决了这个问题。

最新更新