问题描述
编译和保护前的源代码:
the source code before compile&proguard :
public class IntentSession extends BaseIntentSession {
@Override
public void onResume() {
super.onResume();
mExecutor.exec(getIntent(), this::finish);
}
}
编译并保护后的反编译代码:(使用CFR 0_118反编译)
the decompiled code after compile&proguard : (Decompiled with CFR 0_118)
public class a extends superA {
public void e() {
super.e();
this.c.a(this.j(), b.a((a)this)); // the problematic code here
}
}
现在是b
类的反编译后的编译和保护后的关键代码:
now is the key code after compile&proguard, the b
class's decompiled code :
final class b implements c.a {
private a a;
b (a a1) {
this.a = a1;
}
static /* synthetic */ b a(final a a) {
return new b(a);
}
@LambdaForm.Hidden
public void a() {
this.a.finish();
}
}
它仍然引用了finish()
方法,该方法已经被proguard混淆为m()
.
it still referenced the finish()
method which was already obfuscated as m()
by proguard.
我希望引用finish()方法被混淆为m(),但这不是正在发生的事情,这是我的问题.
Proguard并未警告我,它只会在运行时撞到错误的代码,并在运行时以NoSuchMethodError
崩溃.因此,不要告诉我添加像我尝试过的 -dontwarn java.lang.invoke.* 这样的proguard配置,但是它不起作用.
Proguard didn't warn me, it only crashes with NoSuchMethodError
on runtime once it hits the wrong code. So don't tell me to add a proguard configuration like -dontwarn java.lang.invoke.* which i tried but it did not work.
在混淆过程中,可能涉及的类的处理顺序是错误的,谁知道?
Maybe the handling sequence of the involved classes were wrong during obfuscation, who know?
我不想在finish()方法上添加@Keep
批注,这是一个糟糕的解决方案,我将不得不担心它,并在将来谨慎使用方法引用,因此我正在寻找最佳解决方案.
I don't want to add the @Keep
annotation on the finish() method, it's a bad solution and I would have to worry about it and carefully use method references in the future, so I'm looking for the best solution.
以下是我的gradle配置:
below are my gradle configurations :
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'me.tatarka:gradle-retrolambda:3.4.0'
classpath "com.fernandocejas.frodo:frodo-plugin:0.8.3"
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
以下是我的proguard-rules.pro
:
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
-ignorewarnings
-keep public class * extends android.app.Activity
-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
-keepclasseswithmembernames class * {
native <methods>;
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
-dontwarn java.util.**
-keep class java.util.** {*; }
-dontwarn com.android.**
-keep class com.android.** { *; }
-dontwarn android.support.**
-keep class android.support.** { *; }
-keepattributes SourceFile, LineNumberTable
# end common config
##---------------Begin: proguard configuration for Gson ----------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature
# Gson specific classes
-keep class sun.misc.Unsafe { *; }
#-keep class com.google.gson.stream.** { *; }
-dontwarn com.google.gson.**
-keep class com.google.gson.** { *; }
-dontwarn com.baidu.util.audiocore.**
-keep class com.baidu.util.audiocore.** { *; }
# Application classes that will be serialized/deserialized over Gson
##---------------End: proguard configuration for Gson ----------
# Explicitly preserve all serialization members. The Serializable interface
# is only a marker interface, so it wouldn't save them.
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
private static final java.io.ObjectStreamField[] serialPersistentFields;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}
-keep public class * implements java.io.Serializable {*;}
# end Serializable
# ----------------------------
-dontnote
-dontwarn com.xiaomi.push.service.XMPushService
#for speech sdk
-keep class com.orion.speech.** {*;}
-keep class com.orion.speech.audio.** {*;}
#end for speech sdk
#for xiaomi
-keep class PushReceiver {*;}
-keep class com.xiaomi.push.**{*;}
#end for xiaomi
#for retrofit
-dontwarn sun.misc.Unsafe
-dontwarn okio.**
# Platform calls Class.forName on types which do not exist on Android to determine platform.
-dontnote retrofit2.Platform
# Platform used when running on RoboVM on iOS. Will not be used at runtime.
-dontnote retrofit2.Platform$IOS$MainThreadExecutor
# Platform used when running on Java 8 VMs. Will not be used at runtime.
-dontwarn retrofit2.Platform$Java8
# 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
#end for retrofit
#for lambda
-dontwarn java.lang.invoke.*
#end for lambda
#for okhttp
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**
#end for okhttp
#for RxJava
-keep class rx.schedulers.Schedulers {
public static <methods>;
}
-keep class rx.schedulers.ImmediateScheduler {
public <methods>;
}
-keep class rx.schedulers.TestScheduler {
public <methods>;
}
-keepclassmembers class rx.internal.util.unsafe.*ArrayQueue*Field* {
long producerIndex;
long consumerIndex;
}
-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueProducerNodeRef {
rx.internal.util.atomic.LinkedQueueNode producerNode;
}
-keepclassmembers class rx.internal.util.unsafe.BaseLinkedQueueConsumerNodeRef {
rx.internal.util.atomic.LinkedQueueNode consumerNode;
}
# end for RxJava
#for bugly
-dontwarn com.tencent.bugly.**
-keep public class com.tencent.bugly.**{*;}
#end for bugly
#----------------android
# this indicate the case of using APIs higher than minSDK (API 8)
-dontwarn android.**
# ---------------------------------------
# TODO: can be reduce if we have more understanding about Service and AIDL
-keep public class android.service.notification.** {*;}
-keepattributes *Annotation*,EnclosingMethod
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclasseswithmembernames class * {
native <methods>;
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepattributes *Annotation*,EnclosingMethod,Signature
-keep interface android.content.pm.**{*;}
-keep class android.content.pm.**{*;}
-keep class android.os.Process{*;}
-dontwarn com.android.internal.os.*
-keep class android.support.v4.os.**{*;}
-keepclassmembers class * {
@android.support.v4 *;
}
# cmcm support
-keep class com.cmcm.support.jni.** { *; }
推荐答案
仔细检查后,我得出结论认为它可能不是proguard的错误,而只是gradle.
after re-check carefully, i concluded it probably not a bug of proguard, only gradle.
首先,我让源代码使用通用的界面编码风格:
first, i let the source code using general interface coding style :
mExecutor.exec(getIntent(), new MyInterface() {
@Override
public void execute() {
finish();
}
});
然后我清理构建缓存并重新构建:
then i clean the build cache and rebuild :
./gradlew clean
./gradlew :app:assembleRelease
我执行输出发布应用程序,并使它到达有问题的代码,它可以正常运行而不会崩溃.
I perform the output release app and make it reach the problematic code, it work without crash.
这次我转向方法参考:
mExecutor.exec(getIntent(), this::finish);
但是我在重新构建之前没有清理构建缓存:
but i didn't clean the build cache before re-building :
./gradlew :app:assembleRelease
现在随着崩溃的发生而重新执行:
now re-perform with the crash happen :
05-22 11:35:33.870 D/AndroidRuntime( 631): Shutting down VM
05-22 11:35:37.470 E/AndroidRuntime( 631): FATAL EXCEPTION: main
05-22 11:35:37.470 E/AndroidRuntime( 631): Process: com.cmrobot.assistant, PID: 631
05-22 11:35:37.470 E/AndroidRuntime( 631): java.lang.NoSuchMethodError: com.session.a.finish
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.newsessions.b.executeDone(Unknown Source)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.newsessions.base.a.a(BaseIntentExecutor.java:99)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.newsessions.base.a.e(BaseIntentExecutor.java:76)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.newsessions.base.a.a(BaseIntentExecutor.java:67)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.newsessions.cmd.general.volume.VolumeChangeExecutor.b(VolumeChangeExecutor.java:28)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.newsessions.cmd.general.volume.a.a(LowerVolumeExecutor.java:63)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.newsessions.base.a.d(BaseIntentExecutor.java:44)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.newsessions.base.b.run(Unknown Source)
05-22 11:35:37.470 E/AndroidRuntime( 631): at android.os.Handler.handleCallback(Handler.java:733)
05-22 11:35:37.470 E/AndroidRuntime( 631): at android.os.Handler.dispatchMessage(Handler.java:95)
05-22 11:35:37.470 E/AndroidRuntime( 631): at android.os.Looper.loop(Looper.java:136)
05-22 11:35:37.470 E/AndroidRuntime( 631): at android.app.ActivityThread.main(ActivityThread.java:5001)
05-22 11:35:37.470 E/AndroidRuntime( 631): at java.lang.reflect.Method.invokeNative(Native Method)
05-22 11:35:37.470 E/AndroidRuntime( 631): at java.lang.reflect.Method.invoke(Method.java:515)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:829)
05-22 11:35:37.470 E/AndroidRuntime( 631): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:645)
05-22 11:35:37.470 E/AndroidRuntime( 631): at dalvik.system.NativeStart.main(Native Method)
为了确认这是构建缓存的原因,我清理,然后重新构建,基本上是在更改后的代码上:
in order to confirm it is the build cache reason, i clean then re-build on the changed code basically :
./gradlew clean
./gradlew :app:assembleRelease
该崩溃在后记应用程序中消失了.
that crash gone in the afterword app.
我试图创建一个演示项目来证明此问题,但是该项目不会弹出崩溃,而只是在我的生产项目中弹出.
i attempt to create a demonstrating project to prove this problem, but that project doesn't popup the crash, only in my productive project.
这篇关于在使用方法引用进行保护后,出现NoSuchMethodError崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!