mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
49 lines
1.7 KiB
Java
49 lines
1.7 KiB
Java
package androidx.startup;
|
|
|
|
import android.content.ContentProvider;
|
|
import android.content.ContentValues;
|
|
import android.content.Context;
|
|
import android.database.Cursor;
|
|
import android.net.Uri;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class InitializationProvider extends ContentProvider {
|
|
@Override // android.content.ContentProvider
|
|
public final boolean onCreate() {
|
|
Context context = getContext();
|
|
if (context != null) {
|
|
if (context.getApplicationContext() != null) {
|
|
AppInitializer.getInstance(context).discoverAndInitialize();
|
|
return true;
|
|
}
|
|
StartupLogger.w("Deferring initialization because `applicationContext` is null.");
|
|
return true;
|
|
}
|
|
throw new StartupException("Context cannot be null");
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public final Cursor query(Uri uri, String[] strArr, String str, String[] strArr2, String str2) {
|
|
throw new IllegalStateException("Not allowed.");
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public final String getType(Uri uri) {
|
|
throw new IllegalStateException("Not allowed.");
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public final Uri insert(Uri uri, ContentValues contentValues) {
|
|
throw new IllegalStateException("Not allowed.");
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public final int delete(Uri uri, String str, String[] strArr) {
|
|
throw new IllegalStateException("Not allowed.");
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public final int update(Uri uri, ContentValues contentValues, String str, String[] strArr) {
|
|
throw new IllegalStateException("Not allowed.");
|
|
}
|
|
}
|