Reputation: 15744
I can not figure it out. I want to deploy my application to Xoom tablet. I am taking the apk file under bin directory and sending to xoom. but i could not achieve to run the applicaton with db. Where should i put db file? please i need help. it will be very appreciated.
Upvotes: 2
Views: 1049
Reputation: 20229
Put the .db into assets/, then access it from code with getAssets().open("some.db");
Upvotes: 3