Android - Error:Execution failed for task ':app:mergeDebugResources'

后端 未结 12 849
孤独总比滥情好
孤独总比滥情好 2020-12-13 14:31

please help me!

here is error says:

Error:Execution failed for task \':app:mergeDebu

12条回答
  •  死守一世寂寞
    2020-12-13 14:49

    Try code on your module build.gradle:

    android {
    // ...
    aaptOptions.cruncherEnabled = false
    aaptOptions.useNewCruncher = false
    // ...
    }
    

    It means Android studio DO NOT check PNG strictly.

提交回复
热议问题