Android How to test Manual Implementation
1. Enter Debug Mode
For testing manual implementation add this before initialization
R89SDK.setDebug()
We also recommend adding
R89SDK.setLogLevel(LogLevels.DEBUG)
Full Example
R89SDK.setDebug()
R89SDK.setLogLevel(LogLevels.DEBUG)
R89SDK.initialize(
appContext = this,
pubUUID = "TestRefinery89UUID",
apiKey = "TestRefinery89ApiKey",
singleLine = false,
initializationEvents = null
)
2. Use Debug Config Ids
Implement the ad formats following their guide and using debug config ids available in https://refinery89.atlassian.net/wiki/spaces/SDKpDocs/pages/1239777281
Example:
R89AdFactory.createBanner(
ConfigBuilder.BANNER_TEST_R89_CONFIG_ID,
wrapper = wrapper,
lifecycleCallbacks = null
)
When debug mode is enabled we include an enabled app open by default. To disable it you can call R89AdFactory.setAppOpenEnabled(false)
, multiple selections available,