TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | Apache 2 |
ReleasedLast Release | Apr 2016 |
Maintained by Rizwan Sattar.
The LaunchKit iOS SDK supports some of the app-level products in LaunchKit, like Super Users.
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:
zlib
as a dependency on your app target.LAUNCHKIT_MANUAL_IMPORT=1
in your target's Build Settings, for all configurations (Debug and Release, by default). See Screenshot
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"]
...
}
import LaunchKit
...
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Add this line
LaunchKit.launchWithToken("YOUR_API_TOKEN")
...
}
Cluster Labs, Inc., [email protected]
LaunchKit is available under the Apache 2.0 license. See the LICENSE file for more info.