Android Gingerbread version 2.3.3 API level has been updated to 10.
Currently there is no check for this version. Also API level 11 (Android 3.0
Honeycomb) should be added.
BinaryDictionary.java:
------
int androidVersion = Integer.parseInt(android.os.Build.VERSION.SDK);
String library = "jni_norwegianime_cupcake-eclair";
if (androidVersion == 8)
library = "jni_norwegianime_froyo";
else if (androidVersion == 9)
library = "jni_norwegianime_gingerbread";
System.loadLibrary(library);
nativeLibraryLoaded = true;
------
-Juha-
Original issue reported on code.google.com by zua...@gmail.com on 4 Mar 2011 at 5:09
Original issue reported on code.google.com by
zua...@gmail.com
on 4 Mar 2011 at 5:09