- 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
23 lines
654 B
Java
23 lines
654 B
Java
package com.google.android.gms.common.api;
|
|
|
|
import android.app.Activity;
|
|
import android.app.PendingIntent;
|
|
import android.content.IntentSender;
|
|
import androidx.annotation.NonNull;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class ResolvableApiException extends ApiException {
|
|
public ResolvableApiException(@NonNull Status status) {
|
|
super(status);
|
|
}
|
|
|
|
@NonNull
|
|
public PendingIntent getResolution() {
|
|
return getStatus().getResolution();
|
|
}
|
|
|
|
public void startResolutionForResult(@NonNull Activity activity, int i) throws IntentSender.SendIntentException {
|
|
getStatus().startResolutionForResult(activity, i);
|
|
}
|
|
}
|