How to access /res/raw from JNI / NDK C++ code?
Does anyone know how to access a resource from the res/raw folder within an APK from JNI C++ code, or what path it would be when accessed via shell?
Thank, Kevi开发者_C百科n
If you can pass a InputStream, do getResources().openRawResource(resourceId)
精彩评论