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.
This commit is contained in:
Daniel Martí 2015-08-08 00:06:41 -07:00
parent d20ef02745
commit d6dcf6bf7b

View File

@ -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);