Mustafa Güven
Mustafa Güven

Reputation: 15744

How to deploy android application within sqlite db?

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

Answers (1)

P Varga
P Varga

Reputation: 20229

Put the .db into assets/, then access it from code with getAssets().open("some.db");

Upvotes: 3

Related Questions