Skip to content

Android

Loi Tran edited this page Jul 9, 2023 · 3 revisions

Tips & tricks for Android

  • How to list installed emulators

    • emulator -list-avds
  • How to list running emulators

    • adb devices
  • How to connect physical device to debugger

    • Make sure to use your own network IP
    • Also find your own device port:
    • adb connect 192.168.0.13:41821
  • How to fix missing device/events while using Firebase live debug view.

    • Enable live debugging of events:
      • adb shell setprop debug.firebase.analytics.app 231022961791
      • adb shell setprop debug.firebase.analytics.app com.example.rse
    • Restart emulator

Clone this wiki locally