Question

I have an android application apk file. I want to open a database file from apk file: is there any official tool to open a database file from apk file?

By using extractor I extract that apk file. Finally I get some files namely assets, bin, lib, res folder, but I cant find the database file and layout files.

I searched the path given below:

assets->data

but I didn't found that data folder inside the assets folder. Why?

Was it helpful?

Solution

Database that is actually used is not stored in the APK. It needs to be in a writable location. Canonically it's in databases under the application's data directory e.g. /data/data/package.name/databases.

Many apps generate their databases dynamically in code. Some apps ship with a pre-populated database in assets, but even they need to copy it to a writable location before using.

OTHER TIPS

In some cases developer might have loaded data from ms excel sheet/textfile/sqllite. so if that's the cases, the files will be under res/raw folder

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top