Android Issue::More 发现一个文件 OS 独立路径 'androidsupportmultidexversion.txt' "error"

Android Issue::More than one file was found with OS independent path 'androidsupportmultidexversion.txt' "error"

我在编译我的项目时遇到了这个问题,我已经尝试了一些解决方案,那就是

https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.PackagingOptions.html

https://www.bswen.com/2019/11/android-More-than-one-file-was-found-with-OS-independent-path-META-INF-DEPENDENCIES.html

https://dorbae.github.io/android/troubleshooting/Android-Troubleshooting-Morethanonemetainf/

https://github.com/Nexmo/nexmo-java/issues/128

但对我没有任何作用 有人知道如何解决这个问题吗?

我遇到了同样的问题你可以用这个link作为参考

()

您可以直接尝试在您的 build.gradle

中更改最低 Android 版本 >= 21
android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'

    defaultConfig {
        applicationId "app.com.app"
        minSdkVersion 21
}