0

我在我的应用程序中激活了 proguard 来混淆我的代码。问题是我发生 InAppBilling 的活动不再起作用。首先,我从自己的服务器收到一个成功的请求,然后什么也没有发生。在我看来,GSON 正在崩溃。我已经在我的 proguard 配置文件中使用了此代码,但它并没有解决问题:

##---------------Begin: proguard configuration for Gson  ----------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature
# For using GSON @Expose annotation
-keepattributes *Annotation*
# Gson specific classes
-keep class sun.misc.Unsafe { *; }
#-keep class com.google.gson.stream.** { *; }
# Application classes that will be serialized/deserialized over Gson
-keep class com.google.gson.examples.android.model.** { *; }
##---------------End: proguard configuration for Gson  ----------

我希望有人能解决这个问题。

最好的问候安迪

4

0 回答 0