Hello Ian,
as you can see in the attached 3 pngs everything seems to be well confgurated The APK has got a lib folder with the *.so files, except the red warning does not disappear by checkin off "Missing JNI function". Initial code is:
//Does not crash in following line:
System.loadLibrary("bass");
//I Tried, but it crashes whil easking for the version:
int version = BASS.BASS_GetVersion();
Log.d("BassVersion", Integer.toString(version));
//Tried, but itcrashes, too:
if (!BASS.BASS_Init(-1, 44100, 0)) {
Log.d("Estrella-BASS", "Init Error!");
return;
}
Debug console prints:
No implementation found for int com.un4seen.bass.BASS.BASS_GetVersion() (tried Java_com_un4seen_bass_BASS_BASS_1GetVersion and Java_com_un4seen_bass_BASS_BASS_1GetVersion__)
or
No implementation found for boolean com.un4seen.bass.BASS.BASS_Init(int, int, int) (tried Java_com_un4seen_bass_BASS_BASS_1Init and Java_com_un4seen_bass_BASS_BASS_1Init__III)