这是我的gradle.build文件
defaultConfig {
minSdkVersion 15
targetSdkVersion 21
versionCode 2
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Proguard-rules.pro文件
-keepclassmembers class * extends de.greenrobot.dao.AbstractDao {
public static java.lang.String TABLENAME;
}
-keep class **$Properties
-dontwarn com.squareup.**
-dontwarn okio.**
-dontwarn retrofit.**
-dontwarn org.joda.time.**
我有一个java类
public class Endpoints {
public final static String GET_ENDPOINT = "MY_ENDPOINT";
}
我在改装的restadapter中用作
RestAdapter restAdapter = new RestAdapter.Builder()
.setEndpoint(Endpoints.GET_ENDPOINT)
.setLogLevel(RestAdapter.LogLevel.NONE)
.setConverter(new GsonConverter(gson))
.setClient(new OkClient(BusProvider.getClientInstance()))
.build();
现在当minifiyEnabled为false时,整个代码工作正常,但我将minifyEnabled设置为true,网络调用没有发生。我的应用程序在启动后立即调用此端点,但网络日志不会显示正在进行的网络请求。有人能告诉我这里有什么不对吗?
答案 0 :(得分:15)
Proguard在我的项目中使用的许多库都不能很好地发挥作用。
对于gson,我添加了gson团队在http://google-gson.googlecode.com/svn/trunk/examples/android-proguard-example/proguard.cfg
给出的proguard规则您需要更改
-keep class com.google.gson.examples.android.model.** { *; }
到
-keep class com.your.package.name.your.models.** { *; }
要进行改造,您需要添加
-dontwarn retrofit.**
-keep class retrofit.** { *; }
-keepattributes Signature
-keepattributes Exceptions
-keepclasseswithmembers class * {
@retrofit.http.* <methods>;
}
从这里采取https://github.com/square/retrofit/issues/117
对于joda图书馆,我添加了
-keep class org.joda.time.** { *; }
-dontwarn org.joda.time.**
对于otto,您需要添加
-dontwarn com.squareup.**
-keepclassmembers class ** {
@com.squareup.otto.Subscribe public *;
@com.squareup.otto.Produce public *;
}
从这里采取https://github.com/StephenAsherson/Android-OttoSample/blob/master/proguard-project.txt
我还添加了
-keep class com.squareup.okhttp.** { *; }
在使用这些配置更改之前,我的应用程序从3.4 mb修剪为2 mb。使用这些更改后,它将它缩小到3.2 MB,所以我将使用minifyEnabled false。
答案 1 :(得分:4)
Proguard可能会混淆你的项目中Retrofit / Gson正在使用的一些类。这导致您的请求永远不会成功,因为解析失败。这是由于参数不匹配,例如String status
可能会与Proguard一起变成String a
。这与响应不匹配,因此失败。
简而言之 - 确保Retrofit / Gson用于创建和解析响应的所有类都被排除在Proguard的混淆之外。