From 913c51fafbf7930eee4f5fb9b1a03ed6c13a3148 Mon Sep 17 00:00:00 2001 From: Saul Mora Date: Wed, 1 Aug 2012 14:42:56 -0600 Subject: [PATCH] update read me --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a4b1280c4..74dd962997 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ We propose the following method to set version numbers in your beta versions: * UIKit.framework 6. If one of the frameworks is missing, then click the + button, search the framework and confirm with the `Add` button. +7. In `Header Search Paths`, add a path to `$(SRCROOT)\Vendor\HockeyKit\Classes` 7. Select `Build Settings` 8. Search for `Other Linker Flags` 9. Double click on the build Setting titled Other Linker Flags. @@ -97,7 +98,7 @@ We propose the following method to set version numbers in your beta versions: 1. Open your `AppDelegate.m` file. 2. Add the following line at the top of the file below your own #import statements:
#import "HockeySDK.h"
-3. Let the AppDelegate implement the protocols `BITHockeyManager`, `BITUpdateManager` and `BITCrashManager`:
@interface AppDelegate() <BITHockeyManager, BITUpdateManager, BITCrashManager> {}
+3. Let the AppDelegate implement the protocols `BITHockeyManagerDelegate`, `BITUpdateManagerDelegate` and `BITCrashManagerDelegate`:
@interface AppDelegate() <BITHockeyManager, BITUpdateManager, BITCrashManager> {}
 @end
4. Search for the method `application:didFinishLaunchingWithOptions:` 5. Add the following lines:
[[BITHockeyManager sharedHockeyManager] configureWithBetaIdentifier:@"BETA_IDENTIFIER" 
@@ -106,8 +107,8 @@ We propose the following method to set version numbers in your beta versions:
 [[BITHockeyManager sharedHockeyManager] startManager];
6. Replace `BETA_IDENTIFIER` with the app identifier of your beta app. If you don't know what the app identifier is or how to find it, please read [this how-to](http://support.hockeyapp.net/kb/how-tos/how-to-find-the-app-identifier). 7. Replace `LIVE_IDENTIFIER` with the app identifier of your release app. -8. Add the following method:
- (NSString *)customDeviceIdentifierForUpdateManager:(BITUpdateManager *)updateManager {
-\#ifndef (CONFIGURATION_AppStore)
+8. Add the following method:
- (NSString \*)customDeviceIdentifierForUpdateManager:(BITUpdateManager \*)updateManager {
+\#ifndef CONFIGURATION_AppStore
   if ([[UIDevice currentDevice] respondsToSelector:@selector(uniqueIdentifier)])
     return [[UIDevice currentDevice] performSelector:@selector(uniqueIdentifier)];
 \#endif