Pyae Phyoe Shein
Pyae Phyoe Shein

Reputation: 13787

Android application with SQLite exporting

Today when I export my android application, eclipse told me that "it's successfully exported" but when I check apk file, it reach only 256kb. I think it's impossible. Because my sqlite database size is around 15MB. I think SQLite database isn't attached when I exported.

Is there anyway to solve this problem?

Upvotes: 0

Views: 307

Answers (2)

Shreyash Mahajan
Shreyash Mahajan

Reputation: 23596

Just Clean the Project and then Export it. If it not solve your problem then see the code. May be the data of your databases are generated during run time so may be the size of the apk file is less. I am not sure but just check it. ok.

Upvotes: 1

Kurru
Kurru

Reputation: 14321

I think resources are compressed when the project is exported? Try zipping the db file and see the resultant file size. It may be that your database compresses to ~100kbs?

Upvotes: 1

Related Questions