2016-05-05 3 views
6

मेरी टीम और मैं इस अपवाद को हल करने का प्रयास कर रहा हूं जो हम प्रोगुआर्ड की कोशिश करते समय प्राप्त कर रहे हैं बीटा जाने से पहले हमारे एंड्रॉइड ऐप।अनकही अनुवाद सिमएक्सप्शन: dx.rop.cst.CstInterfaceMethodRef com.android.dx.rop.cst.CstMethodRef (प्रोगार्ड)

अपवाद हम हो रही है है:

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. 

हम नीचे ट्रैक करने के लिए जहां यह त्रुटि Proguarding के दौरान होने वाली है कोशिश कर रहे हैं, लेकिन बहुत जहां विफलताओं घटित हो रहा लगाने के लिए कैसे पता करने के लिए Proguard से परिचित नहीं किया जा रहा है।

क्या यह अनुवाद देखने के लिए कोई तरीका है कि यह अनुवाद त्रुटि कहां हो रही है? अगर मुझे पता था कि मेरे कोड में कास्ट अपवाद क्या था/शायद मैं इसे ठीक कर सकता हूं। ऑनलाइन गेम के संदर्भ में Google Play Services अन्य एसडीक्स में समस्याएं पैदा कर सकती हैं लेकिन हमने पहले से ही निर्भरता उपकरण का उपयोग किया है और पाया है कि यह सभी एसडीक्स में 8.4.0 से ठीक से जुड़ा हुआ है।

हमारा ऐप भी multiDexEnabled सही ध्वज का उपयोग कर रहा है।

# 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); 
} 

किसी भी अधिक जानकारी की आवश्यकता तो कृपया मुझे बताएं और मैं प्रदान करने के लिए खुश हो जाएगा नहीं है, तो यह एक बीटा प्रकाशित करने की हमारी क्षमता को ब्लॉक कर रहा है:

यहाँ हमारे ProGuard फ़ाइल है।

उत्तर

3

तो हमारे लिए, ऐसा लगता है समाधान निकालने के लिए है:

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

, के रूप में वहाँ कुछ विरोध हो जब विभिन्न पुस्तकालयों के साथ इस का उपयोग करते हुए करना चाहिए। मुझे आशा है कि इससे दूसरों को इस समस्या में भाग लेने में मदद मिलेगी क्योंकि हम इस पर 6 दिनों के लिए फंस गए थे।

यह ध्यान देने योग्य है कि आप तो स्पष्ट रूप से संचालकों क्लिक करने के लिए अपने संदर्भ जोड़ना चाहिए या कम से कम उसे संक्षिप्त, इस नियम यहाँ के मूल देखें: Android Proguard - how to keep onClick handlers only referenced from XML layouts

0

मैं है भी CreativeSDK जोड़ने के बाद इस त्रुटि के साथ संघर्ष कर रहा । अगर यह भविष्य में किसी की मदद करता है तो यहां जोड़ना। सटीक त्रुटि थी:

असीमित अनुवाद त्रुटि: com.android.dx.cf.code.SimException: com.android.dx.rop.cst.CstMethodRef com.android.dx.rop.cst पर नहीं डाला जा सकता

.CstInterfaceMethodRef और मेरे मामले में समाधान Proguard

से

-keep class retrofit.** { *; } 

दूर करने के लिए था

संबंधित मुद्दे