Initialization
Add, import, and configure AATKit
Configure AATKit
AATKitConfiguration configuration = new AATKitConfiguration(this);
configuration.setDelegate(this); //optional, pass the implementation of AATKit.Delegate to listen to callbacks
AATKit.init(configuration);val configuration = AATKitConfiguration(this)
configuration.delegate = this //optional, pass the implementation of AATKit.Delegate to listen to callbacks
AATKit.init(configuration)Handling Activity lifecycle
@Override
protected void onResume() {
super.onResume();
AATKit.onActivityResume(this);
}override protected fun onResume() {
super.onResume()
AATKit.onActivityResume(this)
}Reconfigure AATKit
Test Mode
Using an Alternative bundle ID
Log Levels
Obtaining debug logs in already built apps
Last updated