diff options
author | Arne Schwabe <arne@rfc2549.org> | 2015-08-03 18:17:08 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2015-08-03 18:40:14 +0200 |
commit | ff3ea5334e94ed94b92839e61a543de67d3573fa (patch) | |
tree | f714b83f3bf82463245c9c236548541f47a0e8db /main/src | |
parent | 844308bc5c0f6895abb54950c37b0907755ddaae (diff) |
For upgrade the binaries need to be called different ...
Diffstat (limited to 'main/src')
-rw-r--r-- | main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java | 1 | ||||
-rw-r--r-- | main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java b/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java index 27c9120a..42f5b85d 100644 --- a/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java +++ b/main/src/main/java/de/blinkt/openvpn/core/NativeUtils.java @@ -15,7 +15,6 @@ public class NativeUtils { static native void jniclose(int fdint); static { - System.loadLibrary("stlport_shared"); System.loadLibrary("opvpnutil"); if (Build.VERSION.SDK_INT== Build.VERSION_CODES.JELLY_BEAN) System.loadLibrary("jbcrypto"); diff --git a/main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java b/main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java index d485a687..d3a94c96 100644 --- a/main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java +++ b/main/src/main/java/de/blinkt/openvpn/core/VPNLaunchHelper.java @@ -20,8 +20,8 @@ import de.blinkt.openvpn.R; import de.blinkt.openvpn.VpnProfile; public class VPNLaunchHelper { - private static final String MININONPIEVPN = "nopievpn"; - private static final String MINIPIEVPN = "pievpn"; + private static final String MININONPIEVPN = "nopie_openvpn"; + private static final String MINIPIEVPN = "pie_openvpn"; private static final String OVPNCONFIGFILE = "android.conf"; |