Android AVD SQLite Files - Browse?
How can I browse and copy out the files in my A开发者_运维知识库ndroid AVD? I wish to view the contents of the Sqlite file the app modifies.
Use the File Manager in DDMS (either the standalone program or the DDMS perspective in Eclipse). Your SQLite databases should be in:
/data/data/your.package.here/databases/
where your.package.here
is whatever package name you gave your application in the manifest.
精彩评论