You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
We have an application with recommended Proguard rules, but it fails in release version with AbstractMethodError when adding almost any widget on UI. Usual SDK without UX work pretty well.
What we are doing wrong?
java.lang.AbstractMethodError: abstract method "void dji.keysdk.callback.KeyListener.onValueChange(java.lang.Object, java.lang.Object)"
at dji.internal.hgf.fdd$dfh.run(Unknown Source:6)
at android.os.Handler.handleCallback(Handler.java:883)
at android.os.Handler.dispatchMessage(Handler.java:100)
at android.os.Looper.loop(Looper.java:237)
at android.os.HandlerThread.run(HandlerThread.java:67)
Proguard rules:
-dontwarn dji.**
-keep class dji.** { *; }
-keep class okio.** { *; }
-keep class com.secneo.sdk.** { *; }
-keep class com.google.gson.** { *; }
-keep class org.bouncycastle.** { *; }
-keep class org.greenrobot.eventbus.** { *; }
-keep class androidx.** { *; }
-keep class android.media.** { *; }
-keep class com.lmax.disruptor.** { *; }
-keep class com.qx.wz.dj.rtcm.* { *; }
-keep class com.squareup.wire.** { *; }
The text was updated successfully, but these errors were encountered:
Hello.
We have an application with recommended Proguard rules, but it fails in release version with AbstractMethodError when adding almost any widget on UI. Usual SDK without UX work pretty well.
What we are doing wrong?
Proguard rules:
The text was updated successfully, but these errors were encountered: