Files
rr3-apk/decompiled-community/sources/com/google/android/gms/games/provider/PlayGamesInitProvider.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

67 lines
2.5 KiB
Java

package com.google.android.gms.games.provider;
import android.content.ContentProvider;
import android.content.ContentValues;
import android.content.Context;
import android.content.pm.ProviderInfo;
import android.database.Cursor;
import android.net.Uri;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.internal.games_v2.zzad;
import com.google.android.gms.internal.games_v2.zzbr;
import com.google.android.gms.internal.games_v2.zzfg;
@zzad
/* loaded from: classes2.dex */
public class PlayGamesInitProvider extends ContentProvider {
@Override // android.content.ContentProvider
public final void attachInfo(@NonNull Context context, @NonNull ProviderInfo providerInfo) {
Preconditions.checkNotNull(providerInfo, "PlayGamesSdkInitProvider ProviderInfo cannot be null.");
if ("com.google.android.gms.games.playgamesinitprovider".equals(providerInfo.authority)) {
throw new IllegalStateException("Incorrect provider authority in manifest. Most likely due to a missing applicationId variable in application's build.gradle.");
}
super.attachInfo(context, providerInfo);
}
@Override // android.content.ContentProvider
public final int delete(@NonNull Uri uri, @Nullable String str, @Nullable String[] strArr) {
return 0;
}
@Override // android.content.ContentProvider
@Nullable
public final String getType(@NonNull Uri uri) {
return null;
}
@Override // android.content.ContentProvider
@Nullable
public final Uri insert(@NonNull Uri uri, @Nullable ContentValues contentValues) {
return null;
}
@Override // android.content.ContentProvider
public final boolean onCreate() {
Context context = getContext();
if (context == null) {
zzfg.zzg("GamesInitProvider", "No Context available. Please manually invoke PlayGamesSdk.initialize().");
return false;
}
zzbr.zzc(context);
return false;
}
@Override // android.content.ContentProvider
@Nullable
public final Cursor query(@NonNull Uri uri, @Nullable String[] strArr, @Nullable String str, @Nullable String[] strArr2, @Nullable String str2) {
return null;
}
@Override // android.content.ContentProvider
public final int update(@NonNull Uri uri, @Nullable ContentValues contentValues, @Nullable String str, @Nullable String[] strArr) {
return 0;
}
}