Shake Debug
Enable Shake Debug
AATKitConfiguration configuration = new AATKitConfiguration(this);
AATKit.init(configuration);
AATKit.enableDebugScreen();val configuration = AATKitConfiguration(this)
AATKit.init(configuration)
AATKit.enableDebugScreen()Disable Shake Debug
AATKitConfiguration configuration = new AATKitConfiguration(this);
// to disable shake debug from the very beginning:
configuration.setUseDebugShake(false);
AATKit.init(configuration);
// alternatively, to disable it after initialising AATKit:
AATKit.disableDebugScreen();val configuration = AATKitConfiguration(this)
// to disable shake debug from the very beginning:
configuration.isUseDebugShake = false
AATKit.init(configuration)
// alternatively, to disable it after initialising AATKit:
AATKit.disableDebugScreen()Customize Shake Debug
AATKitDebugScreenConfiguration debugScreenConfiguration = new AATKitDebugScreenConfiguration(appLogo, "Title");
debugScreenConfiguration.setShowBundleId(true);
debugScreenConfiguration.setShowAvailableNetworks(false);
// configure other available settings as needed
AATKit.configureDebugScreen(debugScreenConfiguration);val debugScreenConfiguration = AATKitDebugScreenConfiguration(appLogo, "Title")
debugScreenConfiguration.showBundleId = true
debugScreenConfiguration.showAvailableNetworks = false
// configure other available settings as needed
AATKit.configureDebugScreen(debugScreenConfiguration)Retrieve Debug Info
Last updated