I'm using Hockey-SDK
in my app and a few of my testers have requested that I implement their In-App Update feature so they can be notified I guess when there is a new build available. I've never used this feature before, never used Hockey-SDK
before, so I was wondering if anyone could point me to how to implement this.
I obviously did check their docs first, and found a section for this, although I found it almost too simple to understand correctly. To enable this feature when distributing via Ad-Hoc, but NOT enable it when it is uploaded to the App Store (how do they make that check by the way?), do I do this in my AppDelegate.m
?
[[BITHockeyManager sharedHockeyManager] configureWithIdentifier:@"1ef7a1d2b1d0fd2b0a1f06d7355f6005"];
// Do some additional configuration if needed here
[[BITHockeyManager sharedHockeyManager] setDisableUpdateManager: NO];
[[BITHockeyManager sharedHockeyManager] startManager];
[[BITHockeyManager sharedHockeyManager].authenticator
authenticateInstallation];
I guess I found it a bit confusing they'd use the wording setDisableUpdateManager:
. Thank you for any help in advance!