导航菜单

页面标题

页面副标题

BetterTogether v3.0.0 - LicenseContentProvider.java 源代码

正在查看: BetterTogether v3.0.0 应用的 LicenseContentProvider.java JAVA 源代码文件

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


package com.pairip.licensecheck;

import android.content.ContentProvider;
import android.content.ContentValues;
import android.database.Cursor;
import android.net.Uri;

public class LicenseContentProvider extends ContentProvider {
    @Override
    public boolean onCreate() {
        new LicenseClient(getContext()).initializeLicenseCheck();
        return true;
    }

    @Override
    public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
        throw new UnsupportedOperationException("Query is not supported ");
    }

    @Override
    public String getType(Uri uri) {
        throw new UnsupportedOperationException("GetType is not supported ");
    }

    @Override
    public Uri insert(Uri uri, ContentValues values) {
        throw new UnsupportedOperationException("Insert is not supported ");
    }

    @Override
    public int delete(Uri uri, String selection, String[] selectionArgs) {
        throw new UnsupportedOperationException("Delete is not supported ");
    }

    @Override
    public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
        throw new UnsupportedOperationException("Update is not supported ");
    }
}