Files
rr3-apk/decompiled-community/sources/com/google/android/gms/security/ProviderInstaller.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

103 lines
4.8 KiB
Java

package com.google.android.gms.security;
import android.content.Context;
import android.content.Intent;
import android.os.SystemClock;
import android.util.Log;
import androidx.annotation.GuardedBy;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.google.android.gms.common.GoogleApiAvailabilityLight;
import com.google.android.gms.common.GooglePlayServicesNotAvailableException;
import com.google.android.gms.common.GooglePlayServicesRepairableException;
import com.google.android.gms.common.GooglePlayServicesUtilLight;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.dynamite.DynamiteModule;
import java.lang.reflect.Method;
/* loaded from: classes3.dex */
public class ProviderInstaller {
@NonNull
public static final String PROVIDER_NAME = "GmsCore_OpenSSL";
private static final GoogleApiAvailabilityLight zza = GoogleApiAvailabilityLight.getInstance();
private static final Object zzb = new Object();
@GuardedBy("ProviderInstaller.lock")
private static Method zzc = null;
@GuardedBy("ProviderInstaller.lock")
private static Method zzd = null;
public interface ProviderInstallListener {
void onProviderInstallFailed(int i, @Nullable Intent intent);
void onProviderInstalled();
}
public static void installIfNeeded(@NonNull Context context) throws GooglePlayServicesRepairableException, GooglePlayServicesNotAvailableException {
Context context2;
Preconditions.checkNotNull(context, "Context must not be null");
zza.verifyGooglePlayServicesIsAvailable(context, 11925000);
synchronized (zzb) {
long elapsedRealtime = SystemClock.elapsedRealtime();
try {
context2 = DynamiteModule.load(context, DynamiteModule.PREFER_HIGHEST_OR_LOCAL_VERSION_NO_FORCE_STAGING, "com.google.android.gms.providerinstaller.dynamite").getModuleContext();
} catch (DynamiteModule.LoadingException e) {
Log.w("ProviderInstaller", "Failed to load providerinstaller module: ".concat(String.valueOf(e.getMessage())));
context2 = null;
}
if (context2 != null) {
zzc(context2, context, "com.google.android.gms.providerinstaller.ProviderInstallerImpl");
return;
}
long elapsedRealtime2 = SystemClock.elapsedRealtime();
Context remoteContext = GooglePlayServicesUtilLight.getRemoteContext(context);
if (remoteContext != null) {
try {
if (zzd == null) {
Class cls = Long.TYPE;
zzd = zzb(remoteContext, "com.google.android.gms.common.security.ProviderInstallerImpl", "reportRequestStats", new Class[]{Context.class, cls, cls});
}
zzd.invoke(null, context, Long.valueOf(elapsedRealtime), Long.valueOf(elapsedRealtime2));
} catch (Exception e2) {
Log.w("ProviderInstaller", "Failed to report request stats: ".concat(String.valueOf(e2.getMessage())));
}
}
if (remoteContext != null) {
zzc(remoteContext, context, "com.google.android.gms.common.security.ProviderInstallerImpl");
} else {
Log.e("ProviderInstaller", "Failed to get remote context");
throw new GooglePlayServicesNotAvailableException(8);
}
}
}
public static void installIfNeededAsync(@NonNull Context context, @NonNull ProviderInstallListener providerInstallListener) {
Preconditions.checkNotNull(context, "Context must not be null");
Preconditions.checkNotNull(providerInstallListener, "Listener must not be null");
Preconditions.checkMainThread("Must be called on the UI thread");
new zza(context, providerInstallListener).execute(new Void[0]);
}
private static Method zzb(Context context, String str, String str2, Class[] clsArr) throws ClassNotFoundException, NoSuchMethodException {
return context.getClassLoader().loadClass(str).getMethod(str2, clsArr);
}
@GuardedBy("ProviderInstaller.lock")
private static void zzc(Context context, Context context2, String str) throws GooglePlayServicesNotAvailableException {
try {
if (zzc == null) {
zzc = zzb(context, str, "insertProvider", new Class[]{Context.class});
}
zzc.invoke(null, context);
} catch (Exception e) {
Throwable cause = e.getCause();
if (Log.isLoggable("ProviderInstaller", 6)) {
Log.e("ProviderInstaller", "Failed to install provider: ".concat(String.valueOf(cause == null ? e.getMessage() : cause.getMessage())));
}
throw new GooglePlayServicesNotAvailableException(8);
}
}
}