0
点赞
收藏
分享

微信扫一扫

Gradle build is stricter that Eclipse ADT (e.g. Found item _ more than one time)


FAILURE:Build failed with an exception.*What went wrong:Execution failed for task ':FunshionAndroid:mergeDebugResources'.> D:\Workspaces\Proj\AndroidApp\res\values-hdpi\dimens.xml:Error:Found item Dimension/tvname_textsize more than one time


在build.gradle里添加

android {
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}


举报

相关推荐

0 条评论