Skip to content

Commit

Permalink
Merge pull request madeye#26 from senyuuri/fix_su_order
Browse files Browse the repository at this point in the history
Improve magisk compatibility on AOSP Userdebug build
  • Loading branch information
madeye authored Apr 9, 2020
2 parents fc94aec + 163b39b commit 8416617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/org/proxydroid/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class Utils {

public final static String TAG = "ProxyDroid";
public final static String DEFAULT_SHELL = "/system/bin/sh";
public final static String DEFAULT_ROOTS[] = {"/system/bin/su", "/system/xbin/su", "/su/bin/su", "/su/xbin/su", "/sbin/su", "/magisk/.core/bin/su"};
public final static String DEFAULT_ROOTS[] = {"/sbin/su", "/system/bin/su", "/system/xbin/su", "/su/bin/su", "/su/xbin/su", "/magisk/.core/bin/su"};
public final static String DEFAULT_IPTABLES = "iptables";
public final static String ALTERNATIVE_IPTABLES = "/system/bin/iptables";
public final static int TIME_OUT = -99;
Expand Down

0 comments on commit 8416617

Please sign in to comment.