Shake Debug
Enable Shake Debug
// [IMPORTANT] AATKit must be initialised first
let configuration = AATConfiguration()
AATSDK.initAATKit(with: configuration)
AATSDK.enableDebugScreen()// [IMPORTANT] AATKit must be initialised first
AATConfiguration *configuration = [[AATConfiguration alloc] init];
[AATSDK initAATKitWith:configuration];
[AATSDK enableDebugScreen];Disable Shake Debug
// [IMPORTANT] AATKit must be initialised first
let configuration = AATConfiguration()
AATSDK.initAATKit(with: configuration)
AATSDK.disableDebugScreen()// [IMPORTANT] AATKit must be initialised first
AATConfiguration *configuration = [[AATConfiguration alloc] init];
[AATSDK initAATKitWith:configuration];
[AATSDK disableDebugScreen];Customize Shake Debug
let debugScreenConfiguration = AATDebugScreenConfiguration(appLogo: <LOGO_IMAGE>,
title: <TITLE>,
showBundleId: true,
showTestMode: true,
showLoadedAndLoadingAds: true,
showDisabledNetworks: true,
showRemovedNetworkSDKs: true,
showDeviceType: true,
showExtraSDKs: true,
showConsent: true,
showIDFA: true)
debugScreenConfiguration.shareEmail = "<YOUR_SUPPORT_EMAIL_ADDRESS>" // Optional
AATSDK.configureDebugScreen(configuration: debugScreenConfiguration)AATDebugScreenConfiguration *debugScreenConfiguration = [[AATDebugScreenConfiguration alloc] initWithAppLogo:<LOGO_IMAGE>
title:<TITLE>
showBundleId:YES
showTestMode:YES
showLoadedAndLoadingAds:YES
showDisabledNetworks:YES
showRemovedNetworkSDKs:YES
showDeviceType:YES
showExtraSDKs:YES
showConsent:YES
showIDFA:YES];
debugScreenConfiguration.shareEmail = @"<YOUR_SUPPORT_EMAIL_ADDRESS>"; // Optional
[AATSDK configureDebugScreenWithConfiguration:debugScreenConfiguration];Retrieve Debug Info
Last updated