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,65 @@
package androidx.credentials;
import android.os.Bundle;
import androidx.credentials.internal.FrameworkClassParsingException;
import androidx.credentials.internal.RequestValidationHelper;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class PublicKeyCredential extends Credential {
public static final String BUNDLE_KEY_AUTHENTICATION_RESPONSE_JSON = "androidx.credentials.BUNDLE_KEY_AUTHENTICATION_RESPONSE_JSON";
public static final String BUNDLE_KEY_SUBTYPE = "androidx.credentials.BUNDLE_KEY_SUBTYPE";
public static final Companion Companion = new Companion(null);
public static final String TYPE_PUBLIC_KEY_CREDENTIAL = "androidx.credentials.TYPE_PUBLIC_KEY_CREDENTIAL";
private final String authenticationResponseJson;
public /* synthetic */ PublicKeyCredential(String str, Bundle bundle, DefaultConstructorMarker defaultConstructorMarker) {
this(str, bundle);
}
public final String getAuthenticationResponseJson() {
return this.authenticationResponseJson;
}
private PublicKeyCredential(String str, Bundle bundle) {
super(TYPE_PUBLIC_KEY_CREDENTIAL, bundle);
this.authenticationResponseJson = str;
if (!RequestValidationHelper.Companion.isValidJSON(str)) {
throw new IllegalArgumentException("authenticationResponseJson must not be empty, and must be a valid JSON".toString());
}
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public PublicKeyCredential(String authenticationResponseJson) {
this(authenticationResponseJson, Companion.toBundle$credentials_release(authenticationResponseJson));
Intrinsics.checkNotNullParameter(authenticationResponseJson, "authenticationResponseJson");
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
public final Bundle toBundle$credentials_release(String authenticationResponseJson) {
Intrinsics.checkNotNullParameter(authenticationResponseJson, "authenticationResponseJson");
Bundle bundle = new Bundle();
bundle.putString(PublicKeyCredential.BUNDLE_KEY_AUTHENTICATION_RESPONSE_JSON, authenticationResponseJson);
return bundle;
}
public final PublicKeyCredential createFrom$credentials_release(Bundle data) {
Intrinsics.checkNotNullParameter(data, "data");
try {
String string = data.getString(PublicKeyCredential.BUNDLE_KEY_AUTHENTICATION_RESPONSE_JSON);
Intrinsics.checkNotNull(string);
return new PublicKeyCredential(string, data, null);
} catch (Exception unused) {
throw new FrameworkClassParsingException();
}
}
}
}