Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 4 Next »

Step Summary

  1. Enter Debug mode

  2. Use SingleTagConfigurator to append custom data that would otherwise not exist neither in the fake local data or in our prod api.

  3. Initialize normally the single tag implementation

1. Enter Debug Mode

For testing single tag implementation add this before initialization

R89SDK.setDebug()

We also recommend adding

R89SDK.setLogLevel(LogLevels.DEBUG)

Full Example

R89SDK.setDebug()
R89SDK.setLogLevel(LogLevels.DEBUG)

/* <SingleTagConfiguratorCode> */

R89SDK.initialize(
	appContext = this,
	publisherId = "TestRefinery89ID",
	appId = "TestDemoApp",
	singleLine = true,
	initializationEvents = null
)

use singletag configurator to add your own events and tags

  • No labels