hello everyone
i want to modding an android app but it obfuscated
i have this code:
/* renamed from: ˏ */
public void m332() {
Context context = this.f242;
int ˏ = hk.m2612(context, 1);
int ˏ2 = hc.m2545(context, 1);
if (ˏ != 1 || ˏ2 != 1) {
Toast.makeText(context, this.f242.getResources().getString(R.string.tamper_alert), 1).show();
this.f242.finish();
and now i want to remove end line
/* renamed from: ˏ */
public void m332() {
Context context = this.f242;
int ˏ = hk.m2612(context, 1);
int ˏ2 = hc.m2545(context, 1);
if (ˏ != 1 || ˏ2 != 1) {
Toast.makeText(context, this.f242.getResources().getString(R.string.tamper_alert), 1).show();
how can i convert edited java code to smali?
*i want to convert and then edit original app by "apk editor" and replace with original code
are there any way?
i want to modding an android app but it obfuscated
i have this code:
/* renamed from: ˏ */
public void m332() {
Context context = this.f242;
int ˏ = hk.m2612(context, 1);
int ˏ2 = hc.m2545(context, 1);
if (ˏ != 1 || ˏ2 != 1) {
Toast.makeText(context, this.f242.getResources().getString(R.string.tamper_alert), 1).show();
this.f242.finish();
and now i want to remove end line
/* renamed from: ˏ */
public void m332() {
Context context = this.f242;
int ˏ = hk.m2612(context, 1);
int ˏ2 = hc.m2545(context, 1);
if (ˏ != 1 || ˏ2 != 1) {
Toast.makeText(context, this.f242.getResources().getString(R.string.tamper_alert), 1).show();
how can i convert edited java code to smali?
*i want to convert and then edit original app by "apk editor" and replace with original code
are there any way?