Browse Source
kivy README: add instructions re accessing internal storage
hard-fail-on-bad-server-string
SomberNight
5 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
10 additions and
0 deletions
-
electrum/gui/kivy/Readme.md
|
@ -115,3 +115,13 @@ keystore, back it up safely, and run `./contrib/make_apk release`. |
|
|
|
|
|
|
|
|
See e.g. [kivy wiki](https://github.com/kivy/kivy/wiki/Creating-a-Release-APK) |
|
|
See e.g. [kivy wiki](https://github.com/kivy/kivy/wiki/Creating-a-Release-APK) |
|
|
and [android dev docs](https://developer.android.com/studio/build/building-cmdline#sign_cmdline). |
|
|
and [android dev docs](https://developer.android.com/studio/build/building-cmdline#sign_cmdline). |
|
|
|
|
|
|
|
|
|
|
|
### Access datadir on Android from desktop (e.g. to copy wallet file) |
|
|
|
|
|
Note that this only works for debug builds! Otherwise the security model |
|
|
|
|
|
of Android does not let you access the internal storage of an app without root. |
|
|
|
|
|
(See [this](https://stackoverflow.com/q/9017073)) |
|
|
|
|
|
``` |
|
|
|
|
|
$ adb shell |
|
|
|
|
|
$ run-as org.electrum.electrum ls /data/data/org.electrum.electrum/files/data |
|
|
|
|
|
$ run-as org.electrum.electrum cp /data/data/org.electrum.electrum/files/data/wallets/my_wallet /sdcard/some_path/my_wallet |
|
|
|
|
|
``` |
|
|