[android-porting] Re: How to package other data files with JNI library?

2009-05-31 Thread efu
I did some research and it seems the only way is to package those files in the .apk and then write them out to /data/data// directory when the app is first used. Can someone from Google confirm that you cannot package other files and install them under /data/data/ just like it can do with the JNI

[android-porting] Re: How to package other data files with JNI library?

2009-06-02 Thread David Turner
There is no other way at the moment, however you can simply put the file into res/raw and copy them to /data/data/ when your app starts for the first time. On Fri, May 29, 2009 at 11:18 PM, efu wrote: > > I am building an app using JNI library. The JNI library needs to read > some input data fro