Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'. More than one ...

You can add this in yourProject/app/build.gradle inside android{}

android {      
      packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/ASL2.0'
      }          
}

参考地址:
https://stackoverflow.com/....

你可能感兴趣的:(Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'. More than one ...)