使用 Android Studio 的 Google Cloud Endpoints 模板时的 Proguard 配置

Proguard configuration when using Android Studio's Google Cloud Endpoints template

我们需要存储和检索用户在线使用我们的应用生成的内容。为此,我们决定使用 Android Studio 集成的 Google Cloud Endpoints 模板来快速创建一个 API(官方使用示例 here)。

它在调试中工作正常,但在发布模式下,启用 Proguard 时,它失败了。更糟糕的是,我没能找到任何关于将 Proguard 与 Android Studio 的 Endpoints 模板一起使用的文档或示例。

经过一个小时左右的摸索并尝试让它工作后,proguard-rules.pro 现在看起来像这样:

-keep class com.google.api.** { public *; }
-dontwarn com.google.api.**
-keep class com.google.common.** { public *; }
-dontwarn com.google.common.**

# Not allowed to post company and app names, but this line is correct in the real file
-keep class com.companyname.appname.application.backend.** { *; }

使用此配置,我在 ArrayAdapter:

中得到一个 class 转换异常
java.lang.ClassCastException: com.google.api.client.util.ArrayMap cannot be cast to com.companyname.appname.application.backend.messageApi.model.Message

似乎没有在某处执行返回数据的转换,我得到的是 Listcom.google.api.client.util.ArrayMap 个对象,而不是 ListMessage 个对象(顺便说一句,它们确实包含有效数据)。

我可以检查应用程序是否 运行 处于发布模式并手动进行转换,但是,这是一种 hacky 方式,我更愿意正确地进行。那么,有人可以告诉我 Proguard 配置文件中缺少什么吗?

我在我的一个应用程序中对端点执行类似的操作。我在使用 Proguard 时也遇到了一些问题(不记得具体是什么了)。

我的 Proguard 规则的这一部分似乎适用:

# Needed by google-api-client to keep generic types and @Key annotations accessed via reflection
-keepclassmembers class * {
  @com.google.api.client.util.Key <fields>;
}
-keepattributes Signature,RuntimeVisibleAnnotations,AnnotationDefault

不知道有没有必要,我也有这一段:

# Play Services
-dontwarn com.google.android.gms.**
-dontwarn com.google.common.cache.**
-dontwarn com.google.common.primitives.**
-keep class * extends java.util.ListResourceBundle {
    protected Object[][] getContents();
}
-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
    public static final *** NULL;
}
-keepnames @com.google.android.gms.common.annotation.KeepName class *
-keepclassmembernames class * {
    @com.google.android.gms.common.annotation.KeepName *;
}

希望对您有所帮助。