Login  Register

Re: Android Studio: Package Native Libraries into APK

Posted by bmcclint on Jul 10, 2020; 3:46am
URL: https://forum.jogamp.org/Android-Studio-Package-Native-Libraries-into-APK-tp4040727p4040739.html

So small progress...I've got the libs packages in the APK but at /lib/<arch>/*.so but adding the following to the APK.

android {
        ...
    sourceSets {
        main {
            jniLibs.srcDirs 'src/main/jniLibs/natives'
        }
    }
}

So maybe another way around this...anyway to change the path the JOAL package is trying to load from?  Its looking in //natives/<arch>//*.so.  MAybe I can make it point to //lib/<arch>//*.so.

Also...I see if the source there is a DEBUG flag in the JOGAMP sources...any way to get that to a TRUE so it spits out all the debug statements being overlooked.

Someone has to have done this?  If not using JOGAMP then anyone have a good source for a recent android OpenAL implementation I can include from source?