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,58 @@
package com.applovin.impl;
import com.applovin.impl.sdk.utils.JsonUtils;
import com.applovin.impl.sdk.utils.StringUtils;
import org.json.JSONObject;
/* loaded from: classes.dex */
public class en extends gn {
private final com.applovin.impl.sdk.ad.b h;
@Override // com.applovin.impl.gn
public void b(JSONObject jSONObject) {
if (com.applovin.impl.sdk.n.a()) {
this.c.a(this.b, "Reported reward successfully for ad: " + this.h);
}
}
@Override // com.applovin.impl.in
public String f() {
return "2.0/cr";
}
@Override // com.applovin.impl.gn
public void i() {
if (com.applovin.impl.sdk.n.a()) {
this.c.b(this.b, "No reward result was found for ad: " + this.h);
}
}
public en(com.applovin.impl.sdk.ad.b bVar, com.applovin.impl.sdk.j jVar) {
super("TaskReportAppLovinReward", jVar);
this.h = bVar;
}
@Override // com.applovin.impl.gn
public fh h() {
return this.h.e();
}
@Override // com.applovin.impl.in
public void a(int i) {
super.a(i);
if (com.applovin.impl.sdk.n.a()) {
this.c.b(this.b, "Failed to report reward for ad: " + this.h + " - error code: " + i);
}
}
@Override // com.applovin.impl.in
public void a(JSONObject jSONObject) {
JsonUtils.putString(jSONObject, "zone_id", this.h.getAdZone().e());
JsonUtils.putInt(jSONObject, "fire_percent", this.h.V());
String clCode = this.h.getClCode();
if (!StringUtils.isValidString(clCode)) {
clCode = "NO_CLCODE";
}
JsonUtils.putString(jSONObject, "clcode", clCode);
}
}