android - Flutter构建APK在Android Studio上不起作用

标签 android android-studio flutter gradle dart

我可以在手机上以 Debug模式运行该应用程序。但是当我通过在Android Studio上选择Build>Flutter>Build APK生成.apk时,它显示以下错误:

/home/suraj/Softwares-and-tools/flutter/bin/flutter --no-color build apk
You are building a fat APK that includes binaries for android-arm, android-arm64, android-x64.
If you are deploying the app to the Play Store, it's recommended to use app bundles or split the APK to reduce the APK size.
    To generate an app bundle, run:
        flutter build appbundle --target-platform android-arm,android-arm64,android-x64
        Learn more on: https://developer.android.com/guide/app-bundle
    To split the APKs per ABI, run:
        flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi
        Learn more on:  https://developer.android.com/studio/build/configure-apk-splits#configure-abi-split
Running Gradle task 'assembleRelease'...                        


FAILURE: Build failed with an exception.



* What went wrong:

Execution failed for task ':path_provider:verifyReleaseResources'.

> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade

   > 1 exception was raised by workers:

     com.android.builder.internal.aapt.v2.Aapt2Exception: Android resource linking failed

     /home/suraj/.gradle/caches/transforms-2/files-2.1/a9db740b60dc36334c2480530f66f4a2/core-1.1.0/res/values/values.xml:142:5-173:25: AAPT: error: resource android:attr/fontVariationSettings not found.



     /home/suraj/.gradle/caches/transforms-2/files-2.1/a9db740b60dc36334c2480530f66f4a2/core-1.1.0/res/values/values.xml:142:5-173:25: AAPT: error: resource android:attr/ttcIndex not found.







* Try:

Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.





* Get more help at https://help.gradle.org

BUILD FAILED in 29s
Running Gradle task 'assembleRelease'...                           29.7s
The built failed likely due to AndroidX incompatibilities in a plugin. The tool is about to try using Jetfier to solve the incompatibility.
Building plugin flutter_plugin_android_lifecycle...
Running Gradle task 'assembleAarRelease'...                         0.7s


FAILURE: Build failed with an exception.

* What went wrong:
Task 'assembleAarRelease' not found in root project 'flutter_plugin_android_lifecycle'.

* Try:
Run gradlew tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 0s

The plugin flutter_plugin_android_lifecycle could not be built due to the issue above.
Process finished with exit code 1

我也尝试使用Run>Flutter run 'main.dart' in release mode在手机上运行该应用程序,但这也不起作用。在 Release模式下运行以前曾经可以工作,但是后来我不确定出了什么问题。

请帮忙

最佳答案

出现此错误是因为您的应用程序尺寸很大,因此您可以减小应用程序尺寸或使用“应用程序 bundle 包”生成apk,那么您将拥有自己的应用程序。
祝好运

关于android - Flutter构建APK在Android Studio上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61406122/

相关文章:

android-studio - Android Studio .gitignore 位置

android - Flutter 显示来电

flutter - 使用Dart将String转换为List/Map

android - 自定义 View 上的 invalidate() 不会导致调用 onDraw(Canvas c)

android - 安全 sqlite 数据库 : Android

android - 导入项目时无法点击完成按钮

java - 如何从 JSON 数组中检索选定的数据?

java - 该应用程序只能管理推送通知

android - OpenGL ES 2.0 是否需要着色器来进行任何顶点渲染?

Android Facebook Flutter 登录崩溃应用程序