- 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
53 lines
1.6 KiB
Java
53 lines
1.6 KiB
Java
package com.facebook.ads;
|
|
|
|
import android.content.ContentProvider;
|
|
import android.content.ContentValues;
|
|
import android.content.Context;
|
|
import android.database.Cursor;
|
|
import android.net.Uri;
|
|
import androidx.annotation.Nullable;
|
|
import com.facebook.ads.internal.dynamicloading.DynamicLoaderFactory;
|
|
import com.facebook.infer.annotation.Nullsafe;
|
|
|
|
@Nullsafe(Nullsafe.Mode.LOCAL)
|
|
/* loaded from: classes2.dex */
|
|
public class AudienceNetworkContentProvider extends ContentProvider {
|
|
@Override // android.content.ContentProvider
|
|
public int delete(Uri uri, @Nullable String str, @Nullable String[] strArr) {
|
|
return 0;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
@Nullable
|
|
public String getType(Uri uri) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
@Nullable
|
|
public Uri insert(Uri uri, @Nullable ContentValues contentValues) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
@Nullable
|
|
public Cursor query(Uri uri, @Nullable String[] strArr, @Nullable String str, @Nullable String[] strArr2, @Nullable String str2) {
|
|
return null;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public int update(Uri uri, @Nullable ContentValues contentValues, @Nullable String str, @Nullable String[] strArr) {
|
|
return 0;
|
|
}
|
|
|
|
@Override // android.content.ContentProvider
|
|
public boolean onCreate() {
|
|
Context context = getContext();
|
|
if (context == null) {
|
|
return false;
|
|
}
|
|
DynamicLoaderFactory.initialize(context, null, null, true);
|
|
return false;
|
|
}
|
|
}
|