- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
54 lines
2.1 KiB
Java
54 lines
2.1 KiB
Java
package androidx.credentials.provider;
|
|
|
|
import android.os.Bundle;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class ProviderClearCredentialStateRequest {
|
|
public static final Companion Companion = new Companion(null);
|
|
private final CallingAppInfo callingAppInfo;
|
|
|
|
public static final Bundle asBundle(ProviderClearCredentialStateRequest providerClearCredentialStateRequest) {
|
|
return Companion.asBundle(providerClearCredentialStateRequest);
|
|
}
|
|
|
|
public static final ProviderClearCredentialStateRequest fromBundle(Bundle bundle) {
|
|
return Companion.fromBundle(bundle);
|
|
}
|
|
|
|
public final CallingAppInfo getCallingAppInfo() {
|
|
return this.callingAppInfo;
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
|
|
public final Bundle asBundle(ProviderClearCredentialStateRequest request) {
|
|
Intrinsics.checkNotNullParameter(request, "request");
|
|
Bundle bundle = new Bundle();
|
|
CallingAppInfo.Companion.setCallingAppInfo$credentials_release(bundle, request.getCallingAppInfo());
|
|
return bundle;
|
|
}
|
|
|
|
public final ProviderClearCredentialStateRequest fromBundle(Bundle bundle) {
|
|
Intrinsics.checkNotNullParameter(bundle, "bundle");
|
|
CallingAppInfo extractCallingAppInfo$credentials_release = CallingAppInfo.Companion.extractCallingAppInfo$credentials_release(bundle);
|
|
if (extractCallingAppInfo$credentials_release == null) {
|
|
throw new IllegalArgumentException("Bundle was missing CallingAppInfo.");
|
|
}
|
|
return new ProviderClearCredentialStateRequest(extractCallingAppInfo$credentials_release);
|
|
}
|
|
}
|
|
|
|
public ProviderClearCredentialStateRequest(CallingAppInfo callingAppInfo) {
|
|
Intrinsics.checkNotNullParameter(callingAppInfo, "callingAppInfo");
|
|
this.callingAppInfo = callingAppInfo;
|
|
}
|
|
}
|