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,46 @@
package com.ironsource;
import com.google.firebase.perf.network.FirebasePerfUrlConnection;
import com.ironsource.mediationsdk.logger.IronLog;
import java.io.DataOutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import kotlin.jvm.internal.Intrinsics;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public class j9 implements Runnable {
private final JSONObject a;
public j9(JSONObject stringToSend) {
Intrinsics.checkNotNullParameter(stringToSend, "stringToSend");
this.a = stringToSend;
}
@Override // java.lang.Runnable
public void run() {
try {
IronLog ironLog = IronLog.INTERNAL;
ironLog.verbose("preparing to send crashes report");
URLConnection uRLConnection = (URLConnection) FirebasePerfUrlConnection.instrument(new URL(i9.d().h).openConnection());
Intrinsics.checkNotNull(uRLConnection, "null cannot be cast to non-null type java.net.HttpURLConnection");
HttpURLConnection httpURLConnection = (HttpURLConnection) uRLConnection;
httpURLConnection.setRequestMethod("POST");
httpURLConnection.setRequestProperty("Content-Type", "application/json;charset=UTF-8");
httpURLConnection.setRequestProperty("Accept", nb.L);
httpURLConnection.setDoOutput(true);
httpURLConnection.setDoInput(true);
DataOutputStream dataOutputStream = new DataOutputStream(httpURLConnection.getOutputStream());
dataOutputStream.writeBytes(this.a.toString());
dataOutputStream.flush();
dataOutputStream.close();
httpURLConnection.getResponseCode();
httpURLConnection.getResponseMessage();
httpURLConnection.disconnect();
ironLog.verbose("sent crash report for type " + this.a.get("crashType") + " and date " + this.a.get("crashDate"));
} catch (Exception e) {
IronLog.INTERNAL.error(e.toString());
}
}
}