diff options
author | cyBerta <cyberta@riseup.net> | 2022-12-21 12:43:41 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2022-12-21 12:43:41 +0100 |
commit | f8fa7db2b598787d6172fd177ac9f905c9289eb7 (patch) | |
tree | 97b9b7f4e949f9e880ac4324e41326e3e3243a9f /app/src/main/java/de/blinkt | |
parent | 5176f99ab26037a578eec8e6e918c3b9a1b0031c (diff) |
fix MinieVPNExecutableName()
Diffstat (limited to 'app/src/main/java/de/blinkt')
-rw-r--r-- | app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java b/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java index 03908ecd..80427a03 100644 --- a/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java +++ b/app/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java @@ -45,16 +45,15 @@ public class VPNLaunchHelper { } } - throw new RuntimeException("Cannot find any execulte for this device's ABIs " + abis.toString()); + throw new RuntimeException("Cannot find any execute for this device's ABIs " + abis.toString()); } - @TargetApi(Build.VERSION_CODES.LOLLIPOP) private static String[] getSupportedABIsLollipop() { return Build.SUPPORTED_ABIS; } private static String getMiniVPNExecutableName() { - return MININONPIEVPN; + return MINIPIEVPN; } public static String[] replacePieWithNoPie(String[] mArgv) { |