Table of Contents | ||
---|---|---|
|
Prerequisites
Do Get Started all the way until finishing step 3
...
Code Block | ||||
---|---|---|---|---|
| ||||
class Application: Application() { override fun onCreate() { super.onCreate() R89SDK.setDebug() //This is for testing purposes, remove it on prod R89SDK.setLogLevel(LogLevels.DEBUG) //This is for testing purposes, remove it on prod R89SDK.initialize( appContext = this, publisherId = "TestRefinery89ID", /* This is for testing purposes, change it on prod */ appId = "TestDemoApp", /* This is for testing purposes, change it on prod */ singleLine = false, initializationEvents = null ) } } |
Info |
---|
You will receive your Your |
...
Then add this application class to the manifest you already had from the Get Started.
The code for adding the application is the following
...