I'm trying to create a common settings file in Xamarin that will be used by both Android and iOS apps. In this shared settings file I wanted to have a property called int HockeyAppLogLevel
that I can use in both projects.
I need to know if the log levels HockeyApp uses for Android match the log levels used for iOS.
eg. I return 0 from HockeyAppLogLevel
and it maps to ERROR in both the iOS project and the Android project.
Best Regards