コードを難読化するために、アプリケーションでプロガードを有効にしました。問題は、InAppBilling が発生するアクティビティが機能しなくなったことです。まず、自分のサーバーからのリクエストが成功しましたが、その後何も起こりません。GSONがクラッシュしているようです。私はすでにプロガード構成ファイルでこのコードを使用していますが、問題は解決しません:
##---------------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 ----------
誰かがこの問題の解決策を持っていることを願っています。
よろしくアンディ