To enable analytics debug on android, I have to execute following adb command:
adb shell setprop debug.firebase.analytics.app package_name
I am wondering, is it posible to enable this from code? I tried:
System.setProperty("debug.firebase.analytics.app",package_name)
System.getProperties().setProperty("debug.firebase.analytics.app",package_name)
but neither of those worked