-
Notifications
You must be signed in to change notification settings - Fork 6
Adding Custom Values
Marius Merkevičius edited this page Oct 13, 2015
·
5 revisions
To add custom values with the add, you can use a static class AdformSDK and its method setPublisherIdAndCustomData(int, HashMap<String ,String>).
Note that #1 parameter is publisher id and #2 is a set of custom data.
// Use builder to set custom parameters...
AdformSDK.setPublisherIdAndCustomData(666666, CustomParamBuilder.startCreating()
.addCustomParam("gender", "female")
.addCustomParam("age", "23")
.buildParams()
); Basic integrations
- Integrating Inline Ad
- Integrating Full Screen Overlay Ad
- Integrating Interstitial Ad
- Integrating Adhesion Ad
- Video Ad Integration
Advanced integrations
- Advanced integration of Inline Ad
- Advanced integration of Full Screen Overlay Ad
- Advanced integration of Interstitial Ad
- Advanced integration of Adhesion Ad
- Advanced integration of AdInline ListView
- Advanced integration of AdInline RecyclerView
- Instream video ads integration
Other
- Adding Custom Values
- Adding Keywords
- Adding Key Value Pairs
- Adding Search Words
- Location
- Security
- Ad Tags
- Header Bidding
- Changing ADX domain
- Specifying banner loading behaviour
- GDPR
- Logs
Plugins