Publisher provided identifiers

You can set a publisher provided identifier (PPID) for use in frequency capping, audience segmentation and targeting, sequential ad rotation, and other audience-based ad delivery controls across devices.

The identifier should be hashed or encrypted such that it is meaningless to Google - it should not be raw personally identifiable information.

Android:

val params = FuseAdViewParams.Builder()
    .setPublisherProvidedId("AB123456789")
    .build()

val adView = FuseAdView(context, code = "<zone_code>", params = params)

NOTE: You cannot set PPID on FuseAdView created in XML.

iOS:

let params = FuseAdViewParams(
    publisherProvidedId: "AB123456789"
)
let adView = FuseAdView(code: "<zone_code>", params: params)