@SuppressWarnings("ResourceType")
public SystemBarTintManager(Activity activity) {
……
}
-keep public class * implements com.bumptech.glide.module.GlideModule
proguard.cfg
-libraryjars
前插入 # 成 #-libraryjars xxxx.jar
Warning:uk.co.senab.photoview.PhotoViewAttacher: can't find referenced metho...
项目中使用的这个PhotoView报警了.
-dontwarn uk.co.senab.photoview.**
解决方式:
百度到的方法: http://blog.csdn.net/IDrinkMoreWater/article/details/46679787
1.在混淆规则文件proguard-project.txt(貌似正常的as工程是proguard-rules.pro)中添加一句
-keepattributes EnclosingMethod
2.在项目的
module的build.gradle文件(注意别搞错
build.gradle文件)中:
buildTypes {
debug {
debuggable true
jniDebuggable true
zipAlignEnabled true
minifyEnabled false
shrinkResources false
signingConfig signingConfigs.debug //这句我加入后有问题,我把它去了,只添加上面
}
release {
debuggable false
jniDebuggable false
zipAlignEnabled true
minifyEnabled true
shrinkResources true
signingConfig signingConfigs.release //这句我加入后有问题,我把它去了,只添加上面的
proguardFiles getDefaultProguardFile('proguard- android.txt'), 'proguard-rules.pro'
}
}
第六个问题:AndFix报警.这个没法截图说明.
在原先的eclipse项目中使用了热修复框架AndFix,当时做的是工程依赖而不是jar依赖的形式(ps:因为andFix中有C代码无法打包成jar依赖),所以转到as这边也给我转的是module依赖的形式.
后来报错说是找不到里面的某个类.机智如我果断删除AndFix的module,去掉依赖后我直接上github去官方andfix拿到使用它的标准依赖方式.
以上问题无法分清先后发生,博主都是把问题都解决完才整理的.希望能有帮助.