Analytics Kotlin Quantcast Full Stack Plugin
To install the Segment-Quantcast integration, add this line to your gradle file:
implementation 'com.segment.analytics.kotlin.destinations:quantcast:<latest_version>'
Or the following for Kotlin DSL:
implementation('com.segment.analytics.kotlin.destinations:quantcast:<latest_version>')
At this time Quantcast's library is hosted in JCenter, which is deprecated. In order to satisfy the Quantcast library dependency, you may have to add the following to the repositories setup in your project's gradle files:
1repositories {2gradlePluginPortal()3}
Open the file where you set up and configure the Analytics-Kotlin library. Add this plugin to the list of imports.
import com.segment.analytics.kotlin.destinations.quantcast.QuantcastDestination
Under your Analytics-Kotlin library setup, call analytics.add(plugin = ...) to add an instance of the plugin to the Analytics timeline.
1analytics = Analytics("<YOUR WRITE KEY>", applicationContext) {2this.flushAt = 33this.trackApplicationLifecycleEvents = true4}5analytics.add(plugin = QuantcastDestination())
Your events will now begin to flow to Quantcast in device-mode.