Android Studio报错 Error: A library uses the same package as this project

时间:2023-03-08 18:40:18

今天在导入一个项目的时候,as报错 Error: A library uses the same package as this project

经过百度Google 发现解决办法:在modules的build.gradle下添加这行代码,如果不成功,试试在app 下添加。

 android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
enforceUniquePackageName = false }