I'm using App Center Android SDK v4.4.5 in custom native Android code within a React Native application. I've integrated it successfully which I can observe from logcat. Also, I'm able to see the device/session data and track events in App Center.
My main use case is, apart from tracking errors, to transfer logs from android.util.logger. Currently, I can't find a solution for this with App Center.
As a side note, in the React Native layer I've intergrated the Application Insights Web SDK together with React Native plugin. An additional transport of my logger makes use of TrackTrace() to transfer the logs. In my Node.js backend logs from Bunyan even are collected automatically by Application Insights by means of a monkey patch applied to Bunyan at runtime.
I'm searching for a similar solution for my Android Logs. Since these logs from my point of view aren't auto-collected, I'd by happy if there was something like TrackTrace() which I can implement in a custom logger class. However, it appears that I can only track events.
I'd appreciate any help!