Questions are in bold below, any help would be appreciated…
This is part of the instructions once you create an app on the hockeyapp website. I have chosen iOS.
1/2. Download
- Move the folder “HockeySDK-iOS” into your project directory.
Ok, can do that.
- Drag & drop “HockeySDK-iOS.embeddedframework” from your project directory to your Xcode project.
Do I have an Xcode project when developing with Corona? Should I ignore this step?
- If you are using Xcode 7 with the new LLVM Modules support, you can skip this step. Otherwise, select your target and expand “Link Binary With Libraries” section. Check for the following frameworks:
Step skipped. But don’t know for sure if the LLVM support is in there and switched on? Running Xcode 7.3.1
The next screen shows this:
Modify CodeOpen your AppDelegate.m file and add the following line at the top of the file below your own #import statements:
#import <HockeySDK/HockeySDK.h>
Search for the method application:didFinishLaunchingWithOptions:, and add the following lines:
[[BITHockeyManager sharedHockeyManager] configureWithIdentifier:@“c42bb6c2b6974163856dd47eca1739e5”];
[[BITHockeyManager sharedHockeyManager] startManager];
[[BITHockeyManager sharedHockeyManager].authenticator authenticateInstallation];
Any idea where to do this? Or is it not mandatory?