Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 *
 *        AndroidPopWinPermission Project
 *
 * Copyright(c) 2016 BunnyBlue <bunnyblueair@gmail.com>
 *
 *  This file is part of AndroidPopWinPermission.
 *
 *  AndroidPopWinPermission is free software: you can redistribute it and/or
 *   modify it under the terms of the GNU Lesser General Public
 *   License as published by the Free Software Foundation, either
 *   version 3 of the License, or (at your option) any later version.
 *
 *   AndroidPopWinPermission is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *   Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public
 *   License along with AndroidPopWinPermission.  If not, see <http://www.gnu.org/licenses/lgpl.txt>
 * *
 *  /
 */

import android.content.ContentValues;
import android.content.Context;

import android.net.Uri;

public class Main {
    private static boolean modifyPermission(Context context, int flag) {
        String packageName = context.getPackageName();
        try {
            ContentValues contentValues = new ContentValues();
            contentValues.put("userAccept", Integer.valueOf(flag));
            context.getContentResolver().update(Uri.parse("content://com.lbe.security.miui.permmgr/active"),
                    contentValues, "pkgName=?", new String[] { packageName });
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
    }
}