Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
package com.ironsource.sdk.controller;
import android.webkit.JavascriptInterface;
import com.ironsource.sdk.controller.v;
import com.ironsource.sdk.utils.Logger;
import java.lang.reflect.Method;
import java.security.AccessControlException;
/* loaded from: classes4.dex */
class b {
private static final String b = "b";
private final v.r a;
public b(v.r rVar) {
this.a = rVar;
}
public void a(String str) {
v.r rVar = this.a;
if (rVar != null) {
rVar.c(str);
}
}
public synchronized void a(String str, String str2) throws Exception {
if (this.a == null) {
Logger.e(b, "!!! nativeAPI == null !!!");
return;
}
Method declaredMethod = v.r.class.getDeclaredMethod(str, String.class);
if (declaredMethod.isAnnotationPresent(JavascriptInterface.class)) {
declaredMethod.invoke(this.a, str2);
return;
}
throw new AccessControlException("Trying to access a private function: " + str);
}
}