0
我有一個自定義列表,我正在使用Gson轉換爲jsonArray。Gson更改密鑰
問題是,如果我使用調試版本的apk,它是完美的工作,但如果我使用發佈版本apk,鍵會改變。
例子:
Debug version -> "name", "Mary"
Release version -> "a", "Mary"
所有按鍵改變爲 「A,B,C ......」
我有兩個版本的ProGuard。
我的代碼:
Gson gson = new Gson();
JsonArray jsonArray = gson.toJsonTree(myCustomList).getAsJsonArray();
搖籃代碼:
buildTypes {
release {
debuggable true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
proguard的代碼:
-dontwarn okhttp3.**
-dontwarn okio.**
##---------------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.** { *; }
# Prevent proguard from stripping interface information from TypeAdapterFactory,
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
-keep class * implements com.google.gson.TypeAdapterFactory
-keep class * implements com.google.gson.JsonSerializer
-keep class * implements com.google.gson.JsonDeserializer
我加入-keep class yourPackageName.data.model.** { *; }
我的包的名字,但我得到了同樣的問題。
內,但我正在使用Debug版本的ProGuard太 – Dahnark
兩者也真的很奇怪,我要發佈的ProGuard設置 – Dahnark
這是不可能的。因爲它應該重命名調試版本上的字段或方法 – santalu