【发布时间】:2019-03-26 14:00:47
【问题描述】:
我在反编译一些 apk 时遇到了这个
protected ButtonAction(String str) {
Intrinsics.m27292b(str, "action");
this.action = str;
}
public final void m23619h(String str) {
Intrinsics.m27292b(str, "donationGroup");
this.f14615e.edit().putString("donation_group", str).apply();
}
我了解Intrinsics来自:
import kotlin.jvm.internal.Intrinsics;
我的问题是m27292b 最有可能是什么?
我知道这有点抽象,但我努力学习
【问题讨论】:
标签: android kotlin decompiling