java.lang.Object | |
↳ | com.google.android.gms.ads.doubleclick.PublisherAdRequest.Builder |
Builds a PublisherAdRequest
.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Sets a slot-level ad category exclusion label.
| |||||||||||
Add extra parameters to pass to a specific custom event adapter.
| |||||||||||
Adds a custom targeting parameter.
| |||||||||||
Adds a custom targeting parameter.
| |||||||||||
Add a keyword for targeting purposes.
| |||||||||||
Add extra parameters to pass to a specific ad network adapter.
| |||||||||||
Add extra parameters to pass to a specific ad network adapter.
| |||||||||||
Causes a device to receive test ads.
| |||||||||||
Constructs
PublisherAdRequest with the specified attributes.
| |||||||||||
Sets the user's birthday for targeting purposes.
| |||||||||||
Sets the content URL for targeting purposes.
| |||||||||||
Sets the user's gender for targeting purposes.
| |||||||||||
Sets the user's location for targeting purposes.
| |||||||||||
Enables manual impression reporting.
| |||||||||||
Sets an identifier for use in frequency capping, audience segmentation and targeting,
sequential ad rotation, and other audience-based ad delivery controls across devices.
| |||||||||||
Sets the request agent string to identify the ad request's origin.
| |||||||||||
This method allows you to specify whether you would like your app to be treated as
child-directed for purposes of the Children’s Online Privacy Protection Act (COPPA) -
http://business.ftc.gov/privacy-and-security/childrens-privacy.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Sets a slot-level ad category exclusion label.
Adds a custom targeting parameter. Calling this multiple times for the same key will overwrite old values.
Adds a custom targeting parameter. Calling this multiple times for the same key will overwrite old values.
Add extra parameters to pass to a specific ad network adapter. networkExtras
should be an instance of com.google.ads.mediation.NetworkExtras
, which is
provided by ad network adapters.
Causes a device to receive test ads. The deviceId
can be obtained by viewing the
logcat output after creating a new ad. For emulators, use
DEVICE_ID_EMULATOR
.
Sets the user's birthday for targeting purposes.
Sets the content URL for targeting purposes.
NullPointerException | If contentUrl is {code null}. |
---|---|
IllegalArgumentException | If contentUrl is empty, or if its length exceeds 512. |
Sets the user's gender for targeting purposes. This should be
GENDER_MALE
, GENDER_FEMALE
, or GENDER_UNKNOWN
.
Sets the user's location for targeting purposes.
Enables manual impression reporting.
Sets an identifier for use in frequency capping, audience segmentation and targeting, sequential ad rotation, and other audience-based ad delivery controls across devices.
Sets the request agent string to identify the ad request's origin. Third party libraries that reference the Mobile Ads SDK should call this method to denote the platform from which the ad request originated. For example, if a third party ad network called "CoolAds network" mediates requests to the Mobile Ads SDK, it should call this method with "CoolAds".
This method allows you to specify whether you would like your app to be treated as child-directed for purposes of the Children’s Online Privacy Protection Act (COPPA) - http://business.ftc.gov/privacy-and-security/childrens-privacy.
If you set this method to true
, you will indicate that your app should be treated
as child-directed for purposes of the Children’s Online Privacy Protection Act (COPPA).
If you set this method to false
, you will indicate that your app should not be
treated as child-directed for purposes of the Children’s Online Privacy Protection Act
(COPPA).
If you do not set this method, ad requests will include no indication of how you would like your app treated with respect to COPPA.
By setting this method, you certify that this notification is accurate and you are authorized to act on behalf of the owner of the app. You understand that abuse of this setting may result in termination of your Google account.
Note: it may take some time for this designation to be fully implemented in applicable Google services.
This designation will only apply to ad requests for which you have set this method.
tagForChildDirectedTreatment | Set to true to indicate that your app should
be treated as child-directed. Set to false to indicate that your app
should not be treated as child-directed.
|
---|