- 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
21 lines
574 B
Java
21 lines
574 B
Java
package androidx.core.content;
|
|
|
|
import android.content.ContentProvider;
|
|
import android.content.Context;
|
|
import androidx.annotation.NonNull;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class ContentProviderCompat {
|
|
private ContentProviderCompat() {
|
|
}
|
|
|
|
@NonNull
|
|
public static Context requireContext(@NonNull ContentProvider contentProvider) {
|
|
Context context = contentProvider.getContext();
|
|
if (context != null) {
|
|
return context;
|
|
}
|
|
throw new IllegalStateException("Cannot find context from the provider.");
|
|
}
|
|
}
|