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,76 @@
package com.facebook.appevents.codeless.internal;
import java.util.ArrayList;
import java.util.List;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
import org.json.JSONArray;
import org.json.JSONObject;
/* loaded from: classes2.dex */
public final class ParameterComponent {
public static final Companion Companion = new Companion(null);
private static final String PARAMETER_NAME_KEY = "name";
private static final String PARAMETER_PATH_KEY = "path";
private static final String PARAMETER_VALUE_KEY = "value";
private final String name;
private final List<PathComponent> path;
private final String pathType;
private final String value;
public final String getName() {
return this.name;
}
public final List<PathComponent> getPath() {
return this.path;
}
public final String getPathType() {
return this.pathType;
}
public final String getValue() {
return this.value;
}
public ParameterComponent(JSONObject component) {
int length;
Intrinsics.checkNotNullParameter(component, "component");
String string = component.getString("name");
Intrinsics.checkNotNullExpressionValue(string, "component.getString(PARAMETER_NAME_KEY)");
this.name = string;
String optString = component.optString("value");
Intrinsics.checkNotNullExpressionValue(optString, "component.optString(PARAMETER_VALUE_KEY)");
this.value = optString;
String optString2 = component.optString(Constants.EVENT_MAPPING_PATH_TYPE_KEY, Constants.PATH_TYPE_ABSOLUTE);
Intrinsics.checkNotNullExpressionValue(optString2, "component.optString(Constants.EVENT_MAPPING_PATH_TYPE_KEY, Constants.PATH_TYPE_ABSOLUTE)");
this.pathType = optString2;
ArrayList arrayList = new ArrayList();
JSONArray optJSONArray = component.optJSONArray("path");
if (optJSONArray != null && (length = optJSONArray.length()) > 0) {
int i = 0;
while (true) {
int i2 = i + 1;
JSONObject jSONObject = optJSONArray.getJSONObject(i);
Intrinsics.checkNotNullExpressionValue(jSONObject, "jsonPathArray.getJSONObject(i)");
arrayList.add(new PathComponent(jSONObject));
if (i2 >= length) {
break;
} else {
i = i2;
}
}
}
this.path = arrayList;
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
}
}