- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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);
|
|
}
|
|
}
|