You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create an SDK runtime implementation where I need to bundle a native shared library (.so file) with a runtime-enabled SDK module.
The following build.gradle configuration works perfectly for bundling native libraries in the app module. However, when I apply the same configuration to a runtime-enabled library module, the native .so files are not packaged and installed on the device.
sourceSets { main { jniLibs.srcDirs = ['libs'] } }
Are there any known limitations or workarounds for including native libraries in the run-time enabled SDK modules?
Any insights, examples, or documentation references would be greatly appreciated!