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:
parent
d20ef02745
commit
d6dcf6bf7b
@ -107,7 +107,9 @@ public class InstallIntoSystemDialogActivity extends FragmentActivity {
|
|||||||
protected void onPostExecute(Boolean probablyRoot) {
|
protected void onPostExecute(Boolean probablyRoot) {
|
||||||
super.onPostExecute(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
|
// looks like we have root, at least su has a version number and is present
|
||||||
|
|
||||||
Intent installIntent = new Intent(context, InstallIntoSystemDialogActivity.class);
|
Intent installIntent = new Intent(context, InstallIntoSystemDialogActivity.class);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user