微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

生成签名的APK时,值“ T”不是参考值错误

如何解决生成签名的APK时,值“ T”不是参考值错误

在手机中运行时,我的代码没有问题。
但是当我启用proguard并想要生成已签名的APK时,该操作没有完成。
建立输出

Value "T" is not a reference value [proguard.evaluation.value.TopValue]  

我认为此问题与Firebase有关,因为添加Firebase库后我没有问题。
保护规则:

-keep class io.** { *; }
-dontwarn com.sothree.**
-keep class com.sothree.**
-keep interface com.sothree.**

-keep class com.google.gson.** { *; }
-keep public class com.google.gson.** {public private protected *;}
-keep class com.google.inject.** { *; }
-dontwarn com.squareup.okhttp.**
-dontnote retrofit2.Platform
-dontnote retrofit2.Platform$IOS$MainThreadExecutor
-dontwarn retrofit2.Platform$Java8
-keepattributes Signature
-keepattributes Exceptions
-keepclasseswithmembers class * {
    @retrofit2.http.* <methods>;
}
-keepattributes Signature
-keepattributes *Annotation*
-dontwarn sun.misc.**
-keep class com.google.gson.examples.android.model.** { <fields>; }


-keep class * implements com.google.gson.TypeAdapter
-keep class * implements com.google.gson.TypeAdapterFactory
-keep class * implements com.google.gson.JsonSerializer
-keep class * implements com.google.gson.JsonDeserializer
-keep class * implements com.google.gson.JsonDeserializer

# Prevent R8 from leaving Data object members always null
-keepclassmembers,allowobfuscation class * {
  @com.google.gson.annotations.Serializedname <fields>;
}

-keep class ***.Model.** { *; }
-keep class ***.Base.** { *; }
-keepattributes Signature
-keepattributes *Annotation*
-keepattributes EnclosingMethod
-keepattributes InnerClasses

-dontwarn kotlinx.coroutines.**
-dontwarn co.pushe.plus.**

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。