解决More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'

Launching lib/main.dart on MHA AL00 in debug mode...
[!] Your app isn't using AndroidX.
    To avoid potential build failures, you can quickly migrate your app by following the steps on https://goo.gl/CP92wY.
Running Gradle task 'assembleDebug'...

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
> More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'

* 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 12s
AndroidX incompatibilities may have caused this build to fail. Please migrate your app to AndroidX. See https://goo.gl/CP92wY.
Finished with error: Gradle task assembleDebug failed with exit code 1

问题那一行,既然more than one 了,那就想办法忽略了

解决办法就是:

修改build.gradle打包的时候忽略掉 androidx-annotations.pro

// app module下的gradle脚本
android {
    packagingOptions {
        exclude 'META-INF/proguard/androidx-annotations.pro'
    }
}

参考来源:
https://stackoverflow.com/questions/52518378/more-than-one-file-was-found-with-os-independent-path-meta-inf-proguard-android

你可能感兴趣的:(flutter)