- 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
61 lines
2.1 KiB
Java
61 lines
2.1 KiB
Java
package com.google.android.gms.measurement;
|
|
|
|
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.measurement.internal.zzhj;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes3.dex */
|
|
public class AppMeasurementContentProvider extends ContentProvider {
|
|
@Override // android.content.ContentProvider
|
|
public int delete(@NonNull Uri uri, @Nullable String str, @NonNull String[] strArr) {
|
|
return 0;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
@Nullable
|
|
public String getType(@NonNull Uri uri) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
@Nullable
|
|
public Uri insert(@NonNull Uri uri, @NonNull ContentValues contentValues) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
@Nullable
|
|
public Cursor query(@NonNull Uri uri, @NonNull String[] strArr, @Nullable String str, @NonNull String[] strArr2, @Nullable String str2) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public int update(@NonNull Uri uri, @Nullable ContentValues contentValues, @Nullable String str, @NonNull String[] strArr) {
|
|
return 0;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public void attachInfo(@NonNull Context context, @NonNull ProviderInfo providerInfo) {
|
|
super.attachInfo(context, providerInfo);
|
|
if ("com.google.android.gms.measurement.google_measurement_service".equals(providerInfo.authority)) {
|
|
throw new IllegalStateException("Incorrect provider authority in manifest. Most likely due to a missing applicationId variable in application's build.gradle.");
|
|
}
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public boolean onCreate() {
|
|
Context context = getContext();
|
|
Preconditions.checkNotNull(context);
|
|
zzhj.zza(context, null, null);
|
|
return false;
|
|
}
|
|
}
|