Moshi Json аннотация не работает с proguard - PullRequest
1 голос
/ 11 февраля 2020

Я следовал https://github.com/square/moshi, чтобы добавить зависимость gradle от moshi и правил proguard, затем я пишу код для проверки.

data class Car(
    @Json(name = "low_speed")  val lowSpeed: Int,
    @Json(name = "high_speed") val highSpeed: Int
)
val moshi = Moshi.Builder()
            .add(KotlinJsonAdapterFactory())
            .build()
val jsonAdapter = moshi.adapter(Car::class.java)

val json = "{\"low_speed\": 10, \"high_speed\": 20}"
val car = jsonAdapter.fromJson(json)

if (car != null) {
    Toast.makeText(this, "${car.lowSpeed}+${car.highSpeed}", Toast.LENGTH_LONG).show()
}

при запуске в режиме отладки , он отображал «10 + 20», что ожидаемо, но когда я запускаю в режиме выпуска (с включенным Proguard), я увидел «0 + 0».

Мой файл proguard-rules.pro:

# Retain generic type information for use by reflection by converters     and adapters.
-keepattributes Signature
# Retain declared checked exceptions for use by a Proxy instance.
-keepattributes Exceptions

# Common Stuff to Keep
-keepattributes *Annotation*
-keepattributes JavascriptInterface

# OkHttp
-dontwarn javax.annotation.**
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
-dontwarn org.codehaus.mojo.animal_sniffer.*
-dontwarn okhttp3.internal.platform.ConscryptPlatform

# okIo
-dontwarn okio.**

#moshi
# JSR 305 annotations are for embedding nullability information.
-keepclasseswithmembers class * {
    @com.squareup.moshi.* <methods>;
}

-keep @com.squareup.moshi.JsonQualifier interface *

# Enum field names are used by the integrated EnumJsonAdapter.
# values() is synthesized by the Kotlin compiler and is used by EnumJsonAdapter indirectly
# Annotate enums with @JsonClass(generateAdapter = false) to use them with Moshi.
-keepclassmembers @com.squareup.moshi.JsonClass class * extends java.lang.Enum {
    <fields>;
    **[] values();
}

#moshi-kotlin
-keep class kotlin.reflect.jvm.internal.impl.builtins.BuiltInsLoaderImpl

-keepclassmembers class kotlin.Metadata {
    public <methods>;
}

моя зависимость build.gradle:

// moshi
implementation("com.squareup.moshi:moshi:1.9.2")
implementation("com.squareup.moshi:moshi-kotlin:1.9.2")

// okhttp
implementation "com.squareup.okhttp3:okhttp:3.10.0"

Полагаю, я что-то упустил в moshi и proguard, но Я действительно не знаю, что это такое

...