- 将AS2.0升到2.1.3出现的问题:
Error:No service of type Factory available in ProjectScopeServices.
在项目中找到build.gradle这个文件,然后在dependencies中
将版本改为1.4.1即可
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
- Android Studio 无法运行项目
提示Error:warning: Ignoring InnerClasses attribute for an anonymous inner class
解决方案:
在工程的混淆配置文件 proguard-rules.pro 中加入下面这句代码即可:
-keepattributes EnclosingMethod
但是尝试之后还是不行,发布不了,最后使用这种方式解决了,添加之后可以正常发布
在主项目build.gradle这里添加这句
defaultConfig {
multiDexEnabled true
}