Release version 4.1.1

FIXED: native code library was being loaded incorrectly. Caused
            exception on Android 7.0+
This commit is contained in:
James Bootsma
2017-10-13 12:55:24 -06:00
parent 69f8905d05
commit 9493c6eff6
2 changed files with 3 additions and 3 deletions

View File

@@ -16,8 +16,8 @@ limitations under the License.
--> -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dsi.ant.server" package="com.dsi.ant.server"
android:versionName="4.1.0" android:versionName="4.1.1"
android:versionCode="040100" android:versionCode="040101"
android:sharedUserId="android.uid.system"> android:sharedUserId="android.uid.system">
<uses-sdk <uses-sdk

View File

@@ -36,7 +36,7 @@ public class JAntJava
{ {
try try
{ {
System.load("libantradio.so"); System.loadLibrary("antradio");
} }
catch (Exception e) catch (Exception e)
{ {