Android Studio 打包APK 出错

今 日打包APK报了下面的错误:

Error:Error: Unexpected cast to TextView: layout tag was RelativeLayout|LinearLayout [WrongViewCast]

解决方法
在build.gradle中 添加
lintOptions {
abortOnError false
checkReleaseBuilds false
// 防止在发布的时候出现因MissingTranslation导致Build Failed!
disable 'MissingTranslation'
}

Android Studio 打包APK 出错_第1张图片
TIM图片20180205104736.png

这样打包就成功了

你可能感兴趣的:(Android Studio 打包APK 出错)