导航菜单

页面标题

页面副标题

Moneyman v2.316.0.0 - SentryContextProvider.java 源代码

正在查看: Moneyman v2.316.0.0 应用的 SentryContextProvider.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package io.sentry.kotlin.multiplatform;

import android.content.ContentProvider;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import io.sentry.android.core.performance.AppStartMetrics;
import kotlin.Metadata;
import kotlin.jvm.internal.i;

@Metadata(d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\b\u0000\u0018\u00002\u00020\u0001B\u0007¢\u0006\u0004\b\u0002\u0010\u0003¨\u0006\u0004"}, d2 = {"Lio/sentry/kotlin/multiplatform/SentryContextProvider;", "Landroid/content/ContentProvider;", "<init>", "()V", "sentry-kotlin-multiplatform_release"}, k = 1, mv = {1, 9, 0}, xi = 48)
public final class SentryContextProvider extends ContentProvider {
    @Override
    public final int delete(Uri uri, String str, String[] strArr) {
        i.g(uri, "uri");
        throw new IllegalStateException("Not allowed.");
    }

    @Override
    public final String getType(Uri uri) {
        i.g(uri, "uri");
        throw new IllegalStateException("Not allowed.");
    }

    @Override
    public final Uri insert(Uri uri, ContentValues contentValues) {
        i.g(uri, "uri");
        throw new IllegalStateException("Not allowed.");
    }

    @Override
    public final boolean onCreate() {
        AppStartMetrics.e(this);
        Context context = getContext();
        if (context != null) {
            context.getApplicationContext();
            AppStartMetrics.f(this);
            return true;
        }
        IllegalStateException illegalStateException = new IllegalStateException("Context cannot be null");
        AppStartMetrics.f(this);
        throw illegalStateException;
    }

    @Override
    public final Cursor query(Uri uri, String[] strArr, String str, String[] strArr2, String str2) {
        i.g(uri, "uri");
        throw new IllegalStateException("Not allowed.");
    }

    @Override
    public final int update(Uri uri, ContentValues contentValues, String str, String[] strArr) {
        i.g(uri, "uri");
        throw new IllegalStateException("Not allowed.");
    }
}