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,39 @@
package androidx.credentials;
import android.os.Build;
import android.view.View;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class CredentialManagerViewHandler {
private static final String TAG = "ViewHandler";
public static /* synthetic */ void getPendingGetCredentialRequest$annotations(View view) {
}
public static final PendingGetCredentialRequest getPendingGetCredentialRequest(View view) {
Intrinsics.checkNotNullParameter(view, "<this>");
Object tag = view.getTag(R.id.androidx_credential_pendingCredentialRequest);
if (tag instanceof PendingGetCredentialRequest) {
return (PendingGetCredentialRequest) tag;
}
return null;
}
public static final void setPendingGetCredentialRequest(View view, PendingGetCredentialRequest pendingGetCredentialRequest) {
Intrinsics.checkNotNullParameter(view, "<this>");
view.setTag(R.id.androidx_credential_pendingCredentialRequest, pendingGetCredentialRequest);
if (pendingGetCredentialRequest != null) {
int i = Build.VERSION.SDK_INT;
if (i >= 35 || (i == 34 && Build.VERSION.PREVIEW_SDK_INT > 0)) {
Api35Impl.INSTANCE.setPendingGetCredentialRequest(view, pendingGetCredentialRequest.getRequest(), pendingGetCredentialRequest.getCallback());
return;
}
return;
}
int i2 = Build.VERSION.SDK_INT;
if (i2 >= 35 || (i2 == 34 && Build.VERSION.PREVIEW_SDK_INT > 0)) {
Api35Impl.INSTANCE.clearPendingGetCredentialRequest(view);
}
}
}