54 lines
1.8 KiB
Java
54 lines
1.8 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 com.google.android.gms.measurement.internal.zzan;
|
|
import com.google.android.gms.measurement.internal.zzbw;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes.dex */
|
|
public class AppMeasurementContentProvider extends ContentProvider {
|
|
@Override // android.content.ContentProvider
|
|
public void attachInfo(Context context, 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 int delete(Uri uri, String str, String[] strArr) {
|
|
return 0;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public String getType(Uri uri) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public Uri insert(Uri uri, ContentValues contentValues) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public boolean onCreate() {
|
|
zzbw.a(getContext(), (zzan) null);
|
|
return false;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public Cursor query(Uri uri, String[] strArr, String str, String[] strArr2, String str2) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public int update(Uri uri, ContentValues contentValues, String str, String[] strArr) {
|
|
return 0;
|
|
}
|
|
}
|