Has anyone integrated AppCenter crash reporting SD...
# multiplatform
e
Has anyone integrated AppCenter crash reporting SDK into a multiplatform application? Is it something that would be better implemented on the platforms?
d
I think you should look at Timber and implement something similar.
The log module should have the base logging functionality, Then create a new module with AppCenter crash reporting SDK in your desired platform.
Then you can export it to Maven and use it like:
Copy code
implementation "com.package:logging:1.0"
implementation "com.package:logging-appcenter:1.0"
The android part is easy to do, I don't know about iOS
e
I’ll look at it, thanks for the response 👍