Back to Bidding-Only Integration
Integration example:
private fun createAd() {
// 1. Create Ad unit
nativeAdUnit = NativeAdUnit(CONFIG_ID)
nativeAdUnit?.setContextType(NativeAdUnit.CONTEXT_TYPE.SOCIAL_CENTRIC)
nativeAdUnit?.setPlacementType(NativeAdUnit.PLACEMENTTYPE.CONTENT_FEED)
nativeAdUnit?.setContextSubType(NativeAdUnit.CONTEXTSUBTYPE.GENERAL_SOCIAL)
// 2. Configure Native Assets and Trackers
addNativeAssets(nativeAdUnit)
// 3. Create Next-Gen SDK AdView
val adView = AdView(this)
adWrapperView.addView(adView)
// 4. Make a bid request to Prebid Server
val requestBuilder = BannerAdRequest.Builder(AD_UNIT_ID, AdSize.FLUID)
nativeAdUnit?.fetchDemand(requestBuilder) {
// 5. Load an Ad
adView.loadAd(requestBuilder.build(), object : AdLoadCallback<BannerAd> {
override fun onAdLoaded(ad: BannerAd) {
super.onAdLoaded(ad)
}
override fun onAdFailedToLoad(adError: LoadAdError) {
super.onAdFailedToLoad(adError)
Log.e(TAG, "Ad failed to load: $adError")
}
})
}
}
Add native assets:
private fun addNativeAssets(adUnit: NativeAdUnit?) {
// ADD ASSETS
val title = NativeTitleAsset()
title.setLength(90)
title.isRequired = true
adUnit?.addAsset(title)
val icon = NativeImageAsset(20, 20, 20, 20)
icon.imageType = NativeImageAsset.IMAGE_TYPE.ICON
icon.isRequired = true
adUnit?.addAsset(icon)
val image = NativeImageAsset(200, 200, 200, 200)
image.imageType = NativeImageAsset.IMAGE_TYPE.MAIN
image.isRequired = true
adUnit?.addAsset(image)
val data = NativeDataAsset()
data.len = 90
data.dataType = NativeDataAsset.DATA_TYPE.SPONSORED
data.isRequired = true
adUnit?.addAsset(data)
val body = NativeDataAsset()
body.isRequired = true
body.dataType = NativeDataAsset.DATA_TYPE.DESC
adUnit?.addAsset(body)
val cta = NativeDataAsset()
cta.isRequired = true
cta.dataType = NativeDataAsset.DATA_TYPE.CTATEXT
adUnit?.addAsset(cta)
// ADD EVENT TRACKERS
val methods = ArrayList<NativeEventTracker.EVENT_TRACKING_METHOD>()
methods.add(NativeEventTracker.EVENT_TRACKING_METHOD.IMAGE)
try {
val tracker = NativeEventTracker(NativeEventTracker.EVENT_TYPE.IMPRESSION, methods)
adUnit?.addEventTracker(tracker)
} catch (e: Exception) {
e.printStackTrace()
}
}
Initialize the NativeAdUnit with properties:
configId - an ID of the Stored Impression on the Prebid ServerIn order to make a bid request for the native ads you should provide a description of native assets that should be present in the native bid response. Prebid SDK supports the following set of assets to request.
NativeImageAssetNativeDataAssetNativeTitleAsset| Type | Scope | Description |
|---|---|---|
| Main | Optional | The image that will be displayed in the native ad. Include a value for minimumWidth and minimumHeight. Ensure that the NativeAssetImage.type is set to ImageAsset.Main |
| Icon | Optional | The icon that will be displayed with the native ad. Include a value for minimumWidth and minimumHeight. Ensure that the NativeAssetImage.type is set to ImageAsset.Icon. |
| Type | Scope | Description |
|---|---|---|
| Description | Optional | The content to appear with the ad. Ensure that the type is set to DataAsset.description. |
| ctatext | Optional | The text for the call to action button of the native ad. Ensure that the type is set to DataAsset.ctatext. |
| Sponsored | Optional | The sponsor (brand) of the native ad. Ensure that the type is set to DataAsset.sponsored. |
| Type | Scope | Description |
|---|---|---|
| Title | Optional | The title of the native ad. |
Using the NativeParameters object (with the PrebidRequest object) or the NativeRequest object, you can customize the bid request for native ads.
The array of requested asset objects. Prebid SDK supports all kinds of assets according to the IAB spec except video.
The array of requested native trackers. Prebid SDK supports inly image trackers according to the IAB spec.
Version of the Native Markup version in use. The default value is 1.2
The context in which the ad appears.
A more detailed context in which the ad appears.
The design/format/layout of the ad unit being offered.
The number of identical placements in this Layout.
0 for the first ad, 1 for the second ad, and so on.
Whether the supply source/impression supports returning an assetsurl instead of an asset object. 0 or the absence of the field indicates no such support.
Whether the supply source / impression supports returning a dco url instead of an asset object. 0 or the absence of the field indicates no such support.
Set to 1 when the native ad supports buyer-specific privacy notice. Set to 0 (or field absent) when the native ad doesn’t support custom privacy links or if support is unknown.
This object is a placeholder that may contain custom JSON agreed to by the parties to support flexibility beyond the standard defined in this specification
Follow the Next-Gen SDK documentation to integrate a banner ad unit. Use AdSize.FLUID to allow the webview to adapt to the native creative size.
The fetchDemand method makes a bid request to the Prebid Server. You should provide a BannerAdRequest.Builder object to this method so Prebid SDK sets the targeting keywords of the winning bid for future ad requests.
Now you should request the ad from the Next-Gen SDK. If the BannerAdRequest contains targeting keywords, the respective Prebid line item will be returned from GAM, and the Next-Gen SDK will render its creative.
Be sure that you make the ad request with the same BannerAdRequest.Builder object that you passed to the fetchDemand method. Otherwise, the ad request won’t contain targeting keywords, and Prebid’s ad won’t ever be displayed.