% android, device # Logcat adb -s logcat -v time # Get property adb -s shell getprop # Install APK adb -s install -r # Uninstall package adb -s uninstall -r # Clear user data for package adb -s shell pm clear # Dispatch a deep-link / open URI adb -s shell am start $ device: adb devices | grep -v devices | grep device | cut -f 1 % android, emulator # Start emulator "$ANDROID_HOME/tools/emulator" -avd -netdelay none -netspeed full $ emulator: "$ANDROID_HOME/tools/emulator" -list-avds % android, Firebase Crashlytics Test # Enable debug logging on your device adb -s shell setprop log.tag.CrashlyticsCore DEBUG # View the logs in the device logs adb -s logcat -s Fabric CrashlyticsCore # Disable debug mode adb -s shell setprop log.tag.CrashlyticsCore INFO $ device: adb devices | grep -v devices | grep device | cut -f 1