what-the-bank/sources/com/google/android/gms/common/GooglePlayServicesManifestE...

20 lines
488 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.android.gms.common;
/* loaded from: classes.dex */
public class GooglePlayServicesManifestException extends IllegalStateException {
private final int zza;
public GooglePlayServicesManifestException(int i, String str) {
super(str);
this.zza = i;
}
public int getExpectedVersion() {
return GoogleApiAvailabilityLight.GOOGLE_PLAY_SERVICES_VERSION_CODE;
}
public int getActualVersion() {
return this.zza;
}
}