Is there any way to disable crash reporting for Ad-Hoc builds? I only want crash reporting for release builds.
I know I can use following code but it only work debug builds.
#if DEBUG == 0
[Fabric with:@[CrashlyticsKit]];
#endif
Im using Fabric 1.1.3
Edit: I don't want to disable Fabric at all, I just need automatic configurations for Ad-Hoc and Release builds.