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,70 @@
package com.facebook.bolts;
import android.net.Uri;
import java.util.Collections;
import java.util.List;
import kotlin.collections.CollectionsKt__CollectionsKt;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class AppLink {
private final Uri sourceUrl;
private final List<Target> targets;
private final Uri webUrl;
public final Uri getSourceUrl() {
return this.sourceUrl;
}
public final Uri getWebUrl() {
return this.webUrl;
}
public AppLink(Uri sourceUrl, List<Target> list, Uri webUrl) {
Intrinsics.checkNotNullParameter(sourceUrl, "sourceUrl");
Intrinsics.checkNotNullParameter(webUrl, "webUrl");
this.sourceUrl = sourceUrl;
this.webUrl = webUrl;
this.targets = list == null ? CollectionsKt__CollectionsKt.emptyList() : list;
}
public static final class Target {
private final String appName;
private final String className;
private final String packageName;
private final Uri url;
public final String getAppName() {
return this.appName;
}
public final String getClassName() {
return this.className;
}
public final String getPackageName() {
return this.packageName;
}
public final Uri getUrl() {
return this.url;
}
public Target(String packageName, String className, Uri url, String appName) {
Intrinsics.checkNotNullParameter(packageName, "packageName");
Intrinsics.checkNotNullParameter(className, "className");
Intrinsics.checkNotNullParameter(url, "url");
Intrinsics.checkNotNullParameter(appName, "appName");
this.packageName = packageName;
this.className = className;
this.url = url;
this.appName = appName;
}
}
public final List<Target> getTargets() {
List<Target> unmodifiableList = Collections.unmodifiableList(this.targets);
Intrinsics.checkNotNullExpressionValue(unmodifiableList, "unmodifiableList(field)");
return unmodifiableList;
}
}