Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
flutter build apk命令创建无法在 android 中安装的异常类型的 apk。这是已构建的 apk 的图像,它不再打开。
flutter build apk
下面是另一个之前运行良好的 apk 图像
工作 apk 在文件大小之后显示 APK,而另一个 apk 显示二进制。
最后我通过添加解决了这个shrinkResources false问题android>app>build.gradle
shrinkResources false
android>app>build.gradle
buildTypes { release { signingConfig signingConfigs.release shrinkResources false } }