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.
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.
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.