【问题标题】:Flutter build apk not working on android studioFlutter build apk 无法在 android studio 上运行
【发布时间】:2020-08-07 21:27:10
【问题描述】:

我可以在我的手机上以调试模式运行该应用程序。但是当我在 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 在手机上运行该应用程序,但这也不起作用。在发布模式下运行以前可以工作,但后来我不确定出了什么问题。

请帮忙

【问题讨论】:

    标签: android android-studio flutter gradle dart


    【解决方案1】:

    这里的错误是因为您的应用程序很大,因此您要么减小应用程序大小,要么使用“应用程序包”生成 apk,然后您将拥有您的应用程序。
    祝你好运

    【讨论】:

    【解决方案2】:

    尝试使用命令:

    flutter clean
    

    然后,尝试构建 apk。如果还是不行,试试Invalidate caches/restartAndroid Studio。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2018-07-07
      • 2020-02-19
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-02-15
      • 2021-09-27
      • 1970-01-01
      相关资源
      最近更新 更多