No device available in debugview firebase

Viewed 2917

i have trying to use debugview in firebase but it is unable to detect my device

i tried the answer -->

  1. DebugView no devices available

  2. https://stackoverflow.com/a/44047095/12553303

what i did is to enable debugging is C:\Users\Dell\AppData\Local\Android\Sdk\platform-tools>adb shell setprop debug.firebase.analytics.app com.example.myprojectname

though it shows no error it also runs the code/project

but it is still showing no device found

need help thanks

enter image description here

1 Answers

I couldn't get the emulator to work but I managed to get my physical device working with DebugView.

My issue with this was that I had my device connected over wifi (following this guide: https://reactnative.dev/docs/running-on-device#method-2-connect-via-wi-fi), and running adb devices only listed the emulator, not my physical device.

After re-connecting through usb (following method 1 of the same guide: https://reactnative.dev/docs/running-on-device#method-1-using-adb-reverse-recommended), and having my physical device listed with adb devices I ran adb -d shell setprop debug.firebase.analytics.app <package_name> and my device was finally recognized by DebugView

Related