-
Notifications
You must be signed in to change notification settings - Fork 6
Changing ADX Domain
vladasdrejeris edited this page Jul 25, 2017
·
2 revisions
It is possible to change ad exchange server by specifying a server domain that should be used by SDK. To do so you need to use static setAdxDomain()
method on AdformSDK
class. There are three standard ADX domain values:
-
NetworkSettings.ADX_SERVER_DOMAIN_EUR
- an ADX server located in Eurupe; -
NetworkSettings.ADX_SERVER_DOMAIN_USA
- an ADX server located in USA; -
NetworkSettings.ADX_SERVER_DOMAIN_DEFAULT
- a default ADX server, at the moment this value is equal toNetworkSettings.ADX_SERVER_DOMAIN_EUR
.
You can also set another custom ADX domain provided to you by Adform.
It is important that you set ADX domain before loading any ads.
An example bellow shows you how to change ADX domain used by SDK:
// Set one of the standard ADX domains:
AdformSDK.setAdxDomain(NetworkSettings.ADX_SERVER_DOMAIN_DEFAULT);
// Set a custom ADX domain:
AdformSDK.setAdxDomain("adxXXX.adform.net");
For more information feel free to contact support.
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
Mediation adapters
Plugins