项目由eclipse转到Android studio时, 在eclipse中编译正常, 用gradle编译出出现Duplicate resources报错, 项目中有部分字符串资源存在重复定义, 能不能在不删除重复定义文件的情况下, 使gradle能正常编译不报错
gradle版本: com.android.tools.build:gradle:1.1.3
走同样的路,发现不同的人生
What version of gradle do you use? What version does the android gradle plug-in use?
Add the following sentence and try android { lintOptions { abortOnError false } }
What version of gradle do you use? What version does the android gradle plug-in use?
Add the following sentence and try
android {
lintOptions {
abortOnError false
}
}