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,77 @@
package com.applovin.impl;
import android.text.TextUtils;
import android.webkit.URLUtil;
import com.applovin.impl.y0;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/* loaded from: classes.dex */
public class km extends yl {
private final b h;
public interface b {
void a(y0.b bVar);
void a(String str);
}
public km(com.applovin.impl.sdk.j jVar, b bVar) {
super("TaskFetchDeveloperUri", jVar);
this.h = bVar;
}
@Override // java.lang.Runnable
public void run() {
String valueOf = String.valueOf(this.a.y().A().get("package_name"));
if (com.applovin.impl.sdk.n.a()) {
this.c.a(this.b, "Looking up developer URI for package name: " + valueOf);
}
this.a.j0().a(new a(com.applovin.impl.sdk.network.a.a(this.a).c("GET").b("https://play.google.com/store/apps/details?id=" + valueOf).a((Object) "").a(false).a(), this.a));
}
public class a extends dn {
public a(com.applovin.impl.sdk.network.a aVar, com.applovin.impl.sdk.j jVar) {
super(aVar, jVar);
}
@Override // com.applovin.impl.dn, com.applovin.impl.d4.e
public void a(String str, String str2, int i) {
if (TextUtils.isEmpty(str2)) {
if (com.applovin.impl.sdk.n.a()) {
this.c.b(this.b, "No developer URI found - response from the Play Store is empty");
}
km.this.h.a(y0.b.APP_DETAILS_NOT_FOUND);
return;
}
Matcher matcher = Pattern.compile("(?<=\"appstore:developer_url\" content=\").*?(?=\">)").matcher(str2);
if (!matcher.find()) {
if (com.applovin.impl.sdk.n.a()) {
this.c.b(this.b, "No developer URI found - unable to find the developer_url meta tag from the Play Store listing");
}
km.this.h.a(y0.b.INVALID_DEVELOPER_URI);
return;
}
String group = matcher.group();
if (!URLUtil.isValidUrl(group)) {
if (com.applovin.impl.sdk.n.a()) {
this.c.b(this.b, "Developer URI (" + group + ") is not valid");
}
km.this.h.a(y0.b.INVALID_DEVELOPER_URI);
return;
}
if (com.applovin.impl.sdk.n.a()) {
this.c.a(this.b, "Found developer URI: " + group);
}
km.this.h.a(group);
}
@Override // com.applovin.impl.dn, com.applovin.impl.d4.e
public void a(String str, int i, String str2, String str3) {
if (com.applovin.impl.sdk.n.a()) {
this.c.b(this.b, "Unable to fetch app details due to: " + str2 + ", and received error code: " + i);
}
km.this.h.a(y0.b.APP_DETAILS_NOT_FOUND);
}
}
}