Integrating Updraft iOS SDK
Updraft iOS Open Source SDK is a Framework to support getupdraft.com mobile app distribution for iOS Apps. The SDK includes a graphical feedback & bug reporter and automatic app updating features.
Last updated
pod 'UpdraftSDK'pod installgithub 'appswithlove/updraft-sdk-ios'carthage updateimport Updraftfunc application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
Updraft.shared.start(sdkKey: "YOUR_SDK_KEY", appKey: "YOUR_APP_KEY")
return true
}@import Updraft;- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[[Updraft shared] startWithSdkKey:@"YOUR_SDK_KEY" appKey:@"YOUR_APP_KEY" isAppStoreRelease: false];
return YES;
}Updraft.shared.logLevel = .info[Updraft shared].logLevel = LogLevelInfo;Updraft.shared.baseUrl = "https://your_base_url/"[Updraft shared].baseUrl = @"https://your_base_url/";