From d6dcf6bf7b939cf7ab53c575bb5486a7bae0998a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 8 Aug 2015 00:06:41 -0700 Subject: [PATCH] Don't prompt users to install into system until it's stable Right now there are multiple issues - #294, #346, #347, #348 - so telling people to go through the process at startup should not happen yet. --- .../fdroid/installer/InstallIntoSystemDialogActivity.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/F-Droid/src/org/fdroid/fdroid/installer/InstallIntoSystemDialogActivity.java b/F-Droid/src/org/fdroid/fdroid/installer/InstallIntoSystemDialogActivity.java index ded1cabb3..8fe2b102c 100644 --- a/F-Droid/src/org/fdroid/fdroid/installer/InstallIntoSystemDialogActivity.java +++ b/F-Droid/src/org/fdroid/fdroid/installer/InstallIntoSystemDialogActivity.java @@ -107,7 +107,9 @@ public class InstallIntoSystemDialogActivity extends FragmentActivity { protected void onPostExecute(Boolean probablyRoot) { super.onPostExecute(probablyRoot); - if (probablyRoot) { + // TODO: remove false condition once the install into system + // process is stable - #294, #346, #347, #348 + if (false && probablyRoot) { // looks like we have root, at least su has a version number and is present Intent installIntent = new Intent(context, InstallIntoSystemDialogActivity.class);