2016-05-05 9 views
6

mój zespół i staram się rozwiązać ten wyjątek, który otrzymujemy podczas próby Proguard nasza aplikacja na Androida przed przejściem do wersji beta.Uncaught translation SimException: dx.rop.cst.CstInterfaceMethodRef nie można przesłać do com.android.dx.rop.cst.CstMethodRef (Proguard)

Wyjątkiem jesteśmy coraz to:

Error:Uncaught translation error: com.android.dx.cf.code.SimException: com.android.dx.rop.cst.CstInterfaceMethodRef cannot be cast to com.android.dx.rop.cst.CstMethodRef 
Possible causes for this unexpected error include:<ul><li>Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) 
<a href="syncProject">Re-download dependencies and sync project (requires network)</a></li><li>The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. 
<a href="stopGradleDaemons">Stop Gradle build processes (requires restart)</a></li><li>Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.</li></ul>In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes. 

Staramy się wyśledzić gdzie ten błąd występuje podczas Proguarding ale nie są bardzo znane z PROGUARD umieć znaleźć gdzie występują awarie.

Czy istnieje sposób sprawdzenia, gdzie występuje błąd w tłumaczeniu? Gdybym wiedział, jaki/gdzie był wyjątek odlewu w moim kodzie, mógłbym go naprawić. Istnieją odniesienia w Internecie stwierdzające, że Usługi Google Play mogą powodować problemy w innych sdkach, ale już korzystaliśmy z narzędzia zależności i stwierdziliśmy, że poprawnie łączy się z wersją 8.4.0 we wszystkich sdk.

Nasza aplikacja używa również flagi TrueData MultiDexEnabled.

Oto nasz plik PROGUARD:

# Add project specific ProGuard rules here. 
# By default, the flags in this file are appended to flags specified 
# in /development/adt-bundle-mac/sdk/tools/proguard/proguard-android.txt 
# You can edit the include path and order by changing the proguardFiles 
# directive in build.gradle. 
# 
# For more details, see 
# http://developer.android.com/guide/developing/tools/proguard.html 

# Add any project specific keep options here: 

# If your project uses WebView with JS, uncomment the following 
# and specify the fully qualified class name to the JavaScript interface 
# class: 
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { 
# public *; 
#} 

# (1)Annotations and signatures 
-keepattributes *Annotation*,EnclosingMethod,Signature,InnerClasses 

-keepnames class com.fasterxml.jackson.** { *; } 

# (2)Simple XML 
-keep public class org.simpleframework.**{ *; } 
-keepclasseswithmembernames class javax.xml.stream.** { *; } 
### Simple XML SERIALIZER SETTINGS 
-keepclassmembers,allowobfuscation class * { 
    @org.simpleframework.xml.* <fields>; 
    @org.simpleframework.xml.* <init>(...); 
} 
-keep class javax.xml.stream.**{ *; } 
-keep class org.simpleframework.xml.**{ *; } 

# Ignore warnings: We are not using DOM model 
#-dontwarn com.fasterxml.jackson.databind.ext.DOMSerializer 
-dontwarn com.fasterxml.jackson.databind.ext.* 
-dontwarn org.apache.http.** 

# Keep the pojos used by GSON or Jackson 
-keep class com.futurice.project.models.pojo.** { *; } 

# Keep Jackson stuff 
-dontwarn org.codehaus.** 
-dontwarn com.bea.xml.stream.** 
-dontwarn com.google.android.gms.* 
-dontwarn javax.xml.stream.* 
-dontwarn javax.annotation.** 
-dontwarn sun.misc.Unsafe 
-dontwarn com.google.j2objc.annotations.Weak 
-dontwarn java.lang.ClassValue 
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 
-dontwarn okio.* 
-dontwarn org.apache.** 
-dontwarn org.simpleframework.xml.stream.* 
-dontwarn rx.internal.util.unsafe.* 

# Keep leakcanary stuff 
-dontwarn com.squareup.haha.** 
-dontwarn com.squareup.leakcanary.** 

# Marshmallow removed Notification.setLatestEventInfo() 
-dontwarn android.app.Notification 

# warnings 
-dontwarn butterknife.internal.* 
-dontwarn com.conviva.streamerProxies.* 
-dontwarn com.anvato.** 
-dontwarn com.apptentive.android.sdk.** 
-dontwarn com.comscore.instrumentation.** 
-dontwarn com.squareup.okhttp.** 
-dontwarn com.urbanairship.json.** 
-dontwarn tv.freewheel.renderers.html.* 

# notes 
-dontnote com.android.vending.** 
-dontnote com.anvato.** 
-dontnote com.conviva.** 
-dontnote com.facebook.stetho.inspector.** 
-dontnote com.google.android.gms.** 
-dontnote com.google.gson.internal.** 
-dontnote com.google.vending.** 
-dontnote com.squareup.okhttp.** 
-dontnote com.urbanairship.** 
-dontnote tv.freewheel.extension.medialets.** 
-dontnote org.apache.** 
-dontnote org.json.** 

#Note: duplicate definition of library class 
-dontnote android.net.http.** 


# For RxJava: 
-dontwarn org.mockito.** 
-dontwarn org.junit.** 
-dontwarn org.robolectric.** 
-dontwarn rx.md.internal.schedulers.NewThreadWorker 

#-ignorewarnings 

-keep public class * extends android.app.Application 
-keep public class * extends android.app.Service 
-keep public class * extends android.content.BroadcastReceiver 
#-keep public class * extends android.content.ContentProvider 
#-keep public class * extends android.app.backup.BackupAgentHelper 
-keep public class * extends android.preference.Preference 
##-keep public class com.android.vending.licensing.ILicensingService 
#-keep public class com.fasterxml.jackson.databind.ObjectMapper 

-keepclasseswithmembernames class * { 
    native <methods>; 
} 

-keepclasseswithmembernames class * { 
    public <init>(android.content.Context, android.util.AttributeSet); 
} 

-keepclasseswithmembernames class * { 
    public <init>(android.content.Context, android.util.AttributeSet, int); 
} 

#-keepclasseswithmembernames class * { 
# public onStart(); 
#} 

-keep public class com.fasterxml.jackson.** { 
    public void set*(***); 
    public *** get*(); 
} 

-keepclassmembers enum * { 
    public static **[] values(); 
    public static ** valueOf(java.lang.String); 
} 

-keep class * implements android.os.Parcelable { 
    public static final android.os.Parcelable$Creator *; 
    public void set*(***); 
    public *** get*(); 
} 

-keep class * { 
    public void *(android.view.View); 
} 

Jeżeli istnieje więcej informacji trzeba proszę dać mi znać i będę szczęśliwy, aby zapewnić, to jest obecnie blokują naszą zdolność do publikowania beta.

Odpowiedz

3

Więc dla nas wydaje się, że rozwiązaniem jest usunięcie:

-keep class * { 
    public void *(android.view.View); 
} 

z PROGUARD, jak tam musi być jakiś konflikt podczas korzystania z tego z różnych bibliotek. Mam nadzieję, że pomoże to innym, którzy napotkali ten problem, ponieważ utknęliśmy na to przez 6 dni.

Należy zauważyć, że należy następnie jawnie dodać odnośniki do kliknięcia ładowarki lub przynajmniej sprowadzić patrz pochodzenie tej reguły tutaj: Android Proguard - how to keep onClick handlers only referenced from XML layouts

0

I zostały również zmaga się z tego błędu po dodaniu CreativeSDK . Dodanie tutaj, na wypadek gdyby ktoś pomógł w przyszłości. Dokładny błędu:

Uncaught błąd tłumaczenie: com.android.dx.cf.code.SimException: com.android.dx.rop.cst.CstMethodRef nie mogą być oddane do com.android.dx.rop.cst .CstInterfaceMethodRef

iw moim przypadku rozwiązania było usunięcie

-keep class retrofit.** { *; } 

z PROGUARD

Powiązane problemy