Skip to content

Instantly share code, notes, and snippets.

@tientham
Last active September 7, 2018 21:06
Show Gist options
  • Save tientham/295c62da438162c45435bb49be887ede to your computer and use it in GitHub Desktop.
Save tientham/295c62da438162c45435bb49be887ede to your computer and use it in GitHub Desktop.
[Android] Copy database .db from android phone

Copy database.db from Android to PC

From linux terminal
adb shell
run-as <your package>
chmod 666 databases/<database>.db
cp databases/<database>.db /sdcard/
chmod 600 datavases/<database>.db
exit
exit
adb pull /sdcard/<database>.db
@tientham
Copy link
Author

For Samsum + Linux

adb backup -f data.ab <my.package>
dd if=data.ab bs=24 skip=1 | openssl zlib -d > data.tar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment