...
Code Block | ||
---|---|---|
| ||
R89SDK.setLogLevel(LogLevel.debug); //This is for testing purposes, remove it on prod R89SDK.setDebug(); //This is for testing purposes, remove it on prod addTestingSingleTagData() /* This is a later step */ R89SDK.initialize( publisherIdpubUUID: "TestRefinery89IDTestRefinery89UUID", /* This is for testing purposes, change it on prod */ appIdapiKey: "TestDemoAppTestRefinery89ApiKey", /* This is for testing purposes, change it on prod */ singleTag: true); |
Info |
---|
Your |
Note |
---|
This |
...
In the dart code remove the methods
R89SDK.setDebug()
andaddTestingSingleTagData()
.In the Android module change the
com.google.android.gms.ads.APPLICATION_ID
in the manifest for the production one.In the iOS module change the
GADApplicationIdentifier
in theinfo.plist
for the production one.In the dart code change the
appId
pubUUID
andpublisherId
apiKey
in the initialization method for the production ones.it’s also recommended to remove
R89SDK.setLogLevel(LogLevels.DEBUG)
but not required.
...