0

I'm worried about some activities showing up in logcat, but the "Application" field is empty on every entry. Is there some way to get this populated?

WalletGuns and GnsSdk are related, but I can't identify what app is throwing the errors.

enter image description here

THE JOATMON
  • 86
  • 2
  • 16

1 Answers1

1

I know it's not very explicit, but for production ROMs, applications will need to have set the debuggable attribute in their Android Manifest to true.

<application android:debuggable="true"
   ... />

Otherwise, no Application tag will appear.

So, probably, the developers for the apps in question have either ignored the attribute (default is false), or specified the attribute as false explicitly.

CzarMatt
  • 591
  • 4
  • 9
  • Good to know, but literally no events (tens of thousands) have this field populated. I think I'm missing something else. – THE JOATMON Aug 31 '17 at 18:23
  • 1
    Generally, debug builds (apps) will spit out far more logcat information. Release builds are stripped of their logs automatically. Wish I had a better solution for you. – CzarMatt Aug 31 '17 at 18:26