diff --git a/Classes/BITUpdateManager.m b/Classes/BITUpdateManager.m index d036572eb7..7f9b0a4ab4 100644 --- a/Classes/BITUpdateManager.m +++ b/Classes/BITUpdateManager.m @@ -883,7 +883,12 @@ self.blockingView = nil; return YES; } - + +#if TARGET_IPHONE_SIMULATOR + NSLog(@"Authentication checks only work on devices. Using the simulator will always return being authorized."); + return YES; +#endif + BITUpdateAuthorizationState state = [self authorizationState]; if (state == BITUpdateAuthorizationDenied) { [self showBlockingScreen:BITHockeyLocalizedString(@"UpdateAuthorizationDenied") image:@"authorize_denied.png"];