Android: Log Files the Easy Way

If there are problems with Android is a look at the log files useful. For this you open the adb shell and prints the following command: adb logcat -v long > logcat.txt Another alternative is Included meters in the SDK DDMS. It is found under “Programmverzeichnis | …

Read more Android: Log Files the Easy Way

Android: Create a backup using adb shell

need to create a backup on the Android tools the adb shell to start. If the connection was successful, is a backup created with the following command: adb backup -apk -shared -all And to restore the backup: adb restore backup.a…

Read more Android: Create a backup using adb shell