LaunchKit 2.1.4

LaunchKit 2.1.4

TestsTested
LangLanguage Obj-CObjective C
License Apache 2
ReleasedLast Release Apr 2016

Maintained by Rizwan Sattar.



LaunchKit 2.1.4

LaunchKit iOS SDK

The LaunchKit iOS SDK supports some of the app-level products in LaunchKit, like Super Users.

Install and Configure LaunchKit iOS SDK

Step 1

Option 3: Manual Installation

You can install the LaunchKit SDK manually by cloning the repo or downloading the latest release, and copy the files in:

LaunchKit/Classes

...to your project. Additionally, you will also have to:

  1. Add zlib as a dependency on your app target.
  2. Set LAUNCHKIT_MANUAL_IMPORT=1 in your target's Build Settings, for all configurations (Debug and Release, by default). See Screenshot

Step 2

Add to your App Delegate

Objective C

Somewhere near the top of your -applicationDidFinishLaunching:withOptions:, add [LaunchKit launchWithToken:@"YOUR_API_TOKEN"], where YOUR_API_TOKEN is a special token you can get here.

#import <LaunchKit/LaunchKit.h>

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Add this line
    [LaunchKit launchWithToken:@"YOUR_API_TOKEN"]

    ...
}
Swift
import LaunchKit

...
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    // Add this line
    LaunchKit.launchWithToken("YOUR_API_TOKEN")

    ...
}

Author

Cluster Labs, Inc., [email protected]

License

LaunchKit is available under the Apache 2.0 license. See the LICENSE file for more info.