...
Do iOS Get Started all the way until finishing step 35
Step Summary
Add the Initialization code for the SDK
Register all the app
UIViewControllers
to the SDKAdd the tagged Wrappers, and tagged Buttons
Note the transition events
Add the testing Single Data
Test everything is working
Change everything to production code
Your app is now prepared for monetization with us.
...
Note |
---|
This |
Tagged Wrappers
Tagged Wrappers are the container inside which the ads will show, they are normal UIView
wrappers with the accessabilityLabel
attribute set. You need to add as many as you can, remember that placing a tagged wrapper does not mean we need to use it.
...
Remove the methods
R89SDK.shared.setDebug()
.Change the
GADApplicationIdentifier
in theinfo.plist
for the production one.Change the
appId
andpublisherId
in the initialization method for the production ones.Change ther89ConfigId
in the formats for the production ones.it’s also recommended to remove
R89SDK.shared.setLogLevel(level: LogLevels.debug)
but not needed.
...