前言
总结一下最近使用Android Studio 签名APK时遇到的问题。
本博客同步发布于XueLong的博客
错误汇总
- 问题一
Error: Avoid non-default constructors in fragments: use a default constructor plus Fragment#setArguments(Bundle) instead [ValidFragment]
解决方式:在Moudel下的build.gradle添加如下代码
android {
lintOptions {
checkReleaseBuilds false
}
}
- 问题二
Error: Expected resource of type styleable [ResourceType]
Error: Expected resource of type id [ResourceTyp]
Error: Expected resource of type raw [ResourceType]
@SuppressWarnings("ResourceType")
写在最后
以上就是目前在使用Android Studio签名APK时遇到的问题的解决方式。
如果你在参考过程中遇到问题,可以在我的联系方式中给我提问。
后面会继续介绍,Android的相关知识,欢迎继续关注我博客的更新。
网友评论