diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-04-02 00:46:15 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-04-02 00:46:15 +0200 |
commit | f7d1fd7b6be69c006e9991b3e592c491284e28a9 (patch) | |
tree | b6aa7c4d8c64da591924573dbf21f361ba335895 | |
parent | 7d6c9bb3c0c13bb608da0217d13db636a88b9c0e (diff) |
Fix stupid bug in naming native library (fixes 4.1)
-rw-r--r-- | AndroidManifest.xml | 4 | ||||
-rw-r--r-- | jni/jbcrypto.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 40ebd382..b01e92d8 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -18,8 +18,8 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="de.blinkt.openvpn" - android:versionCode="64" - android:versionName="0.5.36" > + android:versionCode="65" + android:versionName="0.5.36a" > <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> diff --git a/jni/jbcrypto.cpp b/jni/jbcrypto.cpp index 97bc5e70..7413a313 100644 --- a/jni/jbcrypto.cpp +++ b/jni/jbcrypto.cpp @@ -41,7 +41,7 @@ int jniThrowException(JNIEnv* env, const char* className, const char* msg) { } -jbyteArray Java_de_blinkt_openvpn_VpnProfile_rsasign(JNIEnv* env, jclass, jbyteArray from, jint pkeyRef) { +jbyteArray Java_de_blinkt_openvpn_core_NativeUtils_rsasign (JNIEnv* env, jclass, jbyteArray from, jint pkeyRef) { // EVP_MD_CTX* ctx = reinterpret_cast<EVP_MD_CTX*>(ctxRef); EVP_PKEY* pkey = reinterpret_cast<EVP_PKEY*>(pkeyRef); |