Intents


class Intents


Intents received from BroadcastReceivers.

Summary

Constants

const String!
ACTION_PUBLISH_CONTINUATION = "com.google.android.engage.action.PUBLISH_CONTINUATION"

Broadcast Action: sent to the target package to request to schedule a publishContinuationCluster task.

const String!
ACTION_PUBLISH_FEATURED = "com.google.android.engage.action.PUBLISH_FEATURED"

Broadcast Action: sent to the target package to request to schedule a publishFeaturedCluster task.

const String!
ACTION_PUBLISH_RECOMMENDATION = "com.google.android.engage.action.PUBLISH_RECOMMENDATION"

Broadcast Action: sent to the target package to request to schedule a publishRecommendationClusters task.

Constants

ACTION_PUBLISH_CONTINUATION

const val ACTION_PUBLISH_CONTINUATION = "com.google.android.engage.action.PUBLISH_CONTINUATION": String!

Broadcast Action: sent to the target package to request to schedule a publishContinuationCluster task.

In order to receive this intent, the target package must:

  • Declare a broadcast receiver for this intent in its AndroidManifest.xml.
  • Register the broadcast receiver during application starts.

ACTION_PUBLISH_FEATURED

const val ACTION_PUBLISH_FEATURED = "com.google.android.engage.action.PUBLISH_FEATURED": String!

Broadcast Action: sent to the target package to request to schedule a publishFeaturedCluster task.

In order to receive this intent, the target package must:

  • Declare a broadcast receiver for this intent in its AndroidManifest.xml.
  • Register the broadcast receiver during application starts.

ACTION_PUBLISH_RECOMMENDATION

const val ACTION_PUBLISH_RECOMMENDATION = "com.google.android.engage.action.PUBLISH_RECOMMENDATION": String!

Broadcast Action: sent to the target package to request to schedule a publishRecommendationClusters task.

In order to receive this intent, the target package must:

  • Declare a broadcast receiver for this intent in its AndroidManifest.xml.
  • Register the broadcast receiver during application starts.