Entry name 'AndroidManifest.xml' collided (Build failed after updating the android gradle plugin to 3.6.0)

前端 未结 6 1599
囚心锁ツ
囚心锁ツ 2021-02-04 02:02

I have recently updated the Android Studio from 3.5(stable) to 3.6(stable).

Then I saw the plugin update was also available, so I have updated the version of "com.an

6条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-04 02:40

    I get a similar error: Entry name 'resources.arsc' collided. Workaround as @Marco Batista said:

    android {
        packagingOptions {
            exclude 'resources.arsc'
        }
    }
    

提交回复
热议问题