Created
May 11, 2015 13:52
-
-
Save Katafalkas/5c3ba12ed895f9ba6510 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
BITHockeyManager.sharedHockeyManager().configureWithIdentifier(kHockeyAppId) | |
BITHockeyManager.sharedHockeyManager().delegate = self | |
BITHockeyManager.sharedHockeyManager().authenticator.authenticateInstallation() | |
BITHockeyManager.sharedHockeyManager().startManager() | |
<...> | |
return true | |
} | |
<...> | |
func applicationLogForCrashManager(crashManager: BITCrashManager!) -> String! { | |
return "FooBar" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment