# App neu installieren (überschreibt die vorherige Version)
adb install -r app/build/outputs/apk/debug/app-debug.apk

# App starten
adb shell am start -n com.example.helloworld/.MainActivity

# App stoppen
adb shell am force-stop com.example.helloworld

# App deinstallieren
adb uninstall com.example.helloworld

# Logs der App anzeigen
adb logcat | grep "HelloWorld"

# Screenshot vom Gerät machen
adb exec-out screencap -p > screenshot.png

Schreibe einen Kommentar