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,63 @@
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 CreatePublicKeyCredentialResponse extends CreateCredentialResponse {
public static final String BUNDLE_KEY_REGISTRATION_RESPONSE_JSON = "androidx.credentials.BUNDLE_KEY_REGISTRATION_RESPONSE_JSON";
public static final Companion Companion = new Companion(null);
private final String registrationResponseJson;
public /* synthetic */ CreatePublicKeyCredentialResponse(String str, Bundle bundle, DefaultConstructorMarker defaultConstructorMarker) {
this(str, bundle);
}
public final String getRegistrationResponseJson() {
return this.registrationResponseJson;
}
private CreatePublicKeyCredentialResponse(String str, Bundle bundle) {
super(PublicKeyCredential.TYPE_PUBLIC_KEY_CREDENTIAL, bundle);
this.registrationResponseJson = str;
if (!RequestValidationHelper.Companion.isValidJSON(str)) {
throw new IllegalArgumentException("registrationResponseJson 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 CreatePublicKeyCredentialResponse(String registrationResponseJson) {
this(registrationResponseJson, Companion.toBundle$credentials_release(registrationResponseJson));
Intrinsics.checkNotNullParameter(registrationResponseJson, "registrationResponseJson");
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
public final Bundle toBundle$credentials_release(String registrationResponseJson) {
Intrinsics.checkNotNullParameter(registrationResponseJson, "registrationResponseJson");
Bundle bundle = new Bundle();
bundle.putString(CreatePublicKeyCredentialResponse.BUNDLE_KEY_REGISTRATION_RESPONSE_JSON, registrationResponseJson);
return bundle;
}
public final CreatePublicKeyCredentialResponse createFrom$credentials_release(Bundle data) {
Intrinsics.checkNotNullParameter(data, "data");
try {
String string = data.getString(CreatePublicKeyCredentialResponse.BUNDLE_KEY_REGISTRATION_RESPONSE_JSON);
Intrinsics.checkNotNull(string);
return new CreatePublicKeyCredentialResponse(string, data, null);
} catch (Exception unused) {
throw new FrameworkClassParsingException();
}
}
}
}