From 4ea1402e9fd32c2568d4aec86fff7b97e903722f Mon Sep 17 00:00:00 2001 From: M66B Date: Thu, 12 Feb 2015 11:13:44 +0100 Subject: [PATCH] Manage white/black lists from usage data Refs #2093 --- CHANGELOG.md | 1 + src/biz/bokhorst/xprivacy/ActivityUsage.java | 42 ++------------------ 2 files changed, 4 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5c528104..413adddc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ Changelog **Next release** * Use application whitelist for *getPackagesForUid* and *Srv_getPackagesForUid* ([issue](/../../issues/2116)) +* Manage white/black lists from usage data (long press uid) ([issue](/../../issues/2093)) [Open issues](https://github.com/M66B/XPrivacy/issues?state=open) diff --git a/src/biz/bokhorst/xprivacy/ActivityUsage.java b/src/biz/bokhorst/xprivacy/ActivityUsage.java index 953cd8c17..178aea917 100644 --- a/src/biz/bokhorst/xprivacy/ActivityUsage.java +++ b/src/biz/bokhorst/xprivacy/ActivityUsage.java @@ -11,9 +11,7 @@ import java.util.concurrent.ThreadFactory; import android.annotation.SuppressLint; -import android.app.AlertDialog; import android.content.Context; -import android.content.DialogInterface; import android.content.Intent; import android.graphics.Color; import android.graphics.drawable.Drawable; @@ -310,49 +308,15 @@ public boolean onLongClick(View view) { boolean isApp = PrivacyManager.isApplication(usageData.uid); boolean odSystem = PrivacyManager.getSettingBool(userId, PrivacyManager.cSettingOnDemandSystem, false); - final boolean wnomod = PrivacyManager.getSettingBool(usageData.uid, - PrivacyManager.cSettingWhitelistNoModify, false); if ((isApp || odSystem) && hook != null && hook.whitelist() != null && usageData.extra != null) { if (Util.hasProLicense(ActivityUsage.this) == null) Util.viewUri(ActivityUsage.this, ActivityMain.cProUri); else { - AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(ActivityUsage.this); - alertDialogBuilder.setTitle(R.string.menu_whitelists); - alertDialogBuilder.setMessage(usageData.restrictionName + "/" - + usageData.methodName + "(" + usageData.extra + ")"); - alertDialogBuilder.setIcon(getThemed(R.attr.icon_launcher)); - alertDialogBuilder.setPositiveButton(getString(R.string.title_deny), - new DialogInterface.OnClickListener() { - @Override - public void onClick(DialogInterface dialog, int which) { - // Deny - PrivacyManager.setSetting(usageData.uid, hook.whitelist(), - usageData.extra, Boolean.toString(false)); - if (!wnomod) - PrivacyManager.updateState(usageData.uid); - } - }); - alertDialogBuilder.setNeutralButton(getString(R.string.title_allow), - new DialogInterface.OnClickListener() { - @Override - public void onClick(DialogInterface dialog, int which) { - // Allow - PrivacyManager.setSetting(usageData.uid, hook.whitelist(), - usageData.extra, Boolean.toString(true)); - if (!wnomod) - PrivacyManager.updateState(usageData.uid); - } - }); - alertDialogBuilder.setNegativeButton(getString(android.R.string.cancel), - new DialogInterface.OnClickListener() { - @Override - public void onClick(DialogInterface dialog, int which) { - } - }); - AlertDialog alertDialog = alertDialogBuilder.create(); - alertDialog.show(); + WhitelistTask whitelistsTask = new WhitelistTask(usageData.uid, hook.whitelist(), + ActivityUsage.this); + whitelistsTask.executeOnExecutor(mExecutor, (Object) null); } return true; } else