3efcc51d76
android-ndk-r8d/build/gmsl/__ gmsl:512: *** non-numeric second argument to `wordlist' function: ''. Stop. This is discussed in this thread[1]. The solution is to add <uses-sdk android:minSdkVersion="8" /> to the manifest as the OSG library will only run in devices with Android>=2.2 (Froyo) with API level 8 [2]. The fix does not affect to older sdk's. Thanks to Jan Ciger for spotting the bug and find a possible solution. "
8 lines
267 B
XML
8 lines
267 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.openscenegraph"
|
|
android:versionCode="1"
|
|
android:versionName="1.0">
|
|
<uses-sdk android:minSdkVersion="8" />
|
|
</manifest>
|