Enable debug logging firebase analytics

久未见 提交于 2019-12-01 02:51:23

Make sure you run the adb shell setprop log.tag.FA VERBOSE and then you restart the app. Enabling logs only works for future logs. If you have more then one device or emulator attached to the computer you might need to tell adb which one you are setting the property for. You can read the current adb properties with adb shell getprop. You should see log.tag.FA property set to VERBOSE. Once you set the log.tag.FA property it will persist until you restart the device so you only need to do that once after the device reboots.

Please try to do this after input "adb root".

Something that are maybe obvious to most people, but took me awhile to learn:

  • this does require root, adb root did not work on my physical device.
  • an emulator will give you root, but...
  • be sure you create your emulator with an image that contains Google API's, so that it will have play services.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!