Initialize SDK
Before utilizing its features, it's essential to initialize the LORA SDK
. You can initiate the SDK using the provided code along with the licenseKey
. To obtain this licenseKey
, please reach out to our support team.
import LoraCore
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.
LaunchOptionsKey: Any]?) -> Bool {
// Initialize LORA SDK
LoraSDK.shared.initWith(licenseKey)
.
.
.
return true
}
}