import co.wunderkind.sdk.Wunderkind
class MainActivity : AppCompatActivity() {
val wunderkind = Wunderkind.getInstance()
override fun onCreate(savedInstanceState: Bundle?) {
wunderkind.initialize(this, myWebsiteID, true)
}
}
import WunderkindKit
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions
launchOptions: [UIApplication.LaunchOptionsKey: Any]?)
→ Bool {
Wunderkind.shared.initialize(websiteId: 1234, isDebugMode: true)
}
}
Wunderkind().initialize(string WEBSITE_ID, bool isDebugMode, TRUE );
Wunderkind.initializeSdk(int WEBSITE_ID, bool isDebugMode, TRUE );