在Flutter应用中运行flutter build appbundle
时,我的构建因以下错误而失败:
Note: io.flutter.view.AccessibilityViewEmbedder$ReflectionAccessors: can't find dynamically referenced class android.util.LongArray
Note: there were 1 unresolved dynamic references to classes or interfaces.
You should check if you need to specify additional program jars.
(http://proguard.sourceforge.net/manual/troubleshooting.html#dynamicalclass)
我发现与此最接近的是这个issue。
任何人都可以为我指出解决该问题的正确方法吗?我可以通过某种方式更新android.jar文件以包含LongArray.java文件吗?我应该找出LongArray
类的引用位置并尝试将其删除吗?
很难为这样的东西做MRE,但是任何指针都会有所帮助。
(PS。我正在Linux上使用Android Studio来开发应用程序。)