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,69 @@
package androidx.credentials.webauthn;
import androidx.annotation.RestrictTo;
import kotlin.jvm.internal.Intrinsics;
@RestrictTo({RestrictTo.Scope.LIBRARY})
/* loaded from: classes.dex */
public final class PublicKeyCredentialRpEntity {
private final String id;
private final String name;
public static /* synthetic */ PublicKeyCredentialRpEntity copy$default(PublicKeyCredentialRpEntity publicKeyCredentialRpEntity, String str, String str2, int i, Object obj) {
if ((i & 1) != 0) {
str = publicKeyCredentialRpEntity.name;
}
if ((i & 2) != 0) {
str2 = publicKeyCredentialRpEntity.id;
}
return publicKeyCredentialRpEntity.copy(str, str2);
}
public final String component1() {
return this.name;
}
public final String component2() {
return this.id;
}
public final PublicKeyCredentialRpEntity copy(String name, String id) {
Intrinsics.checkNotNullParameter(name, "name");
Intrinsics.checkNotNullParameter(id, "id");
return new PublicKeyCredentialRpEntity(name, id);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof PublicKeyCredentialRpEntity)) {
return false;
}
PublicKeyCredentialRpEntity publicKeyCredentialRpEntity = (PublicKeyCredentialRpEntity) obj;
return Intrinsics.areEqual(this.name, publicKeyCredentialRpEntity.name) && Intrinsics.areEqual(this.id, publicKeyCredentialRpEntity.id);
}
public final String getId() {
return this.id;
}
public final String getName() {
return this.name;
}
public int hashCode() {
return (this.name.hashCode() * 31) + this.id.hashCode();
}
public String toString() {
return "PublicKeyCredentialRpEntity(name=" + this.name + ", id=" + this.id + ')';
}
public PublicKeyCredentialRpEntity(String name, String id) {
Intrinsics.checkNotNullParameter(name, "name");
Intrinsics.checkNotNullParameter(id, "id");
this.name = name;
this.id = id;
}
}