You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
Is it possible to disable crash reporting for debug builds using Xamarin.Android.Crashlytics or Xamarin.Android.Crashlytics.Core ? I've not been able to find the correct classes using the Xamarin nuget package (2.9.4.1)
// Set up Crashlytics, disabled for debug buildsCrashlyticscrashlyticsKit = newCrashlytics.Builder()
.core(newCrashlyticsCore.Builder().disabled(BuildConfig.DEBUG).build())
.build();
// Initialize Fabric with the debug-disabled crashlytics.Fabric.with(this, crashlyticsKit);
It is the only way for now. I was moving from my nugets to the official packages, and missed CrasyticsCore and the Answers.getInstance for Android. On iOS nothing that I use is missing until now. You asked if is possible, and yes, it is with the deprecated method.
Is it possible to disable crash reporting for debug builds using
Xamarin.Android.Crashlytics
orXamarin.Android.Crashlytics.Core
? I've not been able to find the correct classes using the Xamarin nuget package (2.9.4.1)This is how it can be done in Java
The text was updated successfully, but these errors were encountered: