engage-sdk-integration
GitHub指导开发者在Android应用中集成Play Engage SDK,涵盖识别垂直领域、生成结构化样板代码、实体映射及错误调试。
Trigger Scenarios
Install
npx skills add android/skills --skill engage-sdk-integration -g -y
SKILL.md
Frontmatter
{
"name": "engage-sdk-integration",
"license": "Complete terms in LICENSE.txt",
"metadata": {
"author": "Google LLC",
"keywords": [
"android",
"engage",
"engage sdk",
"play engage library",
"google play"
],
"last-updated": "2026-08-19"
},
"description": "Helps developers integrate, debug, and resolve Play Engage SDK implementation issues. Use when adding Engage SDK support, generating publishing code, mapping data classes to entities, or fixing SDK-related errors."
}
This skill guides you through integrating the Play Engage SDK into an Android app. It ensures that the code follows the mandatory structure and uses the required Engage entities for each vertical.
Workflow
Follow these steps to assist the developer:
-
Identify vertical and cluster:
- Ask the developer which vertical their app belongs to based on references/schemas/.
- Check if the integration is for TV or mobile. If the integration is for TV, read the TV-specific sections in patterns.md as well.
- Use
{VERTICAL}.mdin the references/schemas/ directory to identify the corresponding Engage entities and theclientclass name. Theclientfield in the JSON provides the full class name. For example,com.google.android.engage.food.service.AppEngageFoodClient. - Note: Initializing the client class requires a
Contextparameter. For example,AppEngageFoodClient(context). - Always refer to common.md for common entities.
- Ask which cluster type they want to publish from the supported cluster types for that vertical.
- Find the method to call from
{VERTICAL}.mdin the references/schemas/ directory for the specified cluster. Each method will specify the request it expects. - Get the request structure from requests.md and clusters from clusters.md. Then suggest and use sources to fill the fields in the request structure correctly, along with the required entities and clusters.
-
Generate structured boilerplate code:
- Create a new directory for all Engage-related code. Name the directory to match the naming convention of the existing codebase.
- Generate the following classes using templates in patterns.md:
Constants: holds constant values such as attempt counts and publish types.ItemToEntityConverter: converts the app's local models to Engage's Entity models.ClusterRequestFactory: constructs the publish requests.EngageWorker: handles the actual publishing and publish errors using WorkManager.EngagePublisher: orchestrates periodic and one-time jobs.EngageBroadcastReceiver: listens for AppEngageService intents and starts a one-time publish job fromEngagePublisher. Important : Implement both static registration and dynamic registration patterns, including the companion objectregistermethod inside theEngageBroadcastReceiverclass.
-
Suggest entity mapping:
- Ask the developer to provide their local model schema (for example, a data class or a JSON snippet).
- If they haven't provided one, share entities from
{VERTICAL}.mdin the references/schemas/ directory as a guide. - Once the local model is identified, suggest a mapping to the corresponding Engage entity.
- Generate the conversion logic using the
ItemToEntityConverterpattern in patterns.md and add it to the generated{ENGAGE_CODE_DIR}/ItemToEntityConverter.
-
Suggest data source:
- Ask the developer to provide the source of actual data you'll publish.
- Once you identify the data source, use it to fetch the data in the app's local model schema.
- Use
{ENGAGE_CODE_DIR}/ItemToEntityConverterto convert this data to an Engage entity. - Use obtained Engage entity model data with
{ENGAGE_CODE_DIR}/ ClusterRequestFactoryto get cluster requests. - Call corresponding cluster publishing method obtained from
{VERTICAL}.mdin the references/schemas/ directory with the obtained request in previous step in{ENGAGE_CODE_DIR}/EngageWorker.
-
Gradle and manifest updates:
- Suggest updates to
build.gradleandAndroidManifest.xml. - For mobile apps, use patterns.md.
- For TV apps, use the TV-specific sections in patterns.md.
- Provide the necessary
implementationdependencies forbuild.gradleorbuild.gradle.ktsfrom patterns.md. - Provide the
<receiver>and<service>declarations forAndroidManifest.xml. - Note: Except for TV, there aren't any vertical-specific imports. For all other verticals,
com.google.android.engage:engage-core:1.6.0is sufficient.
- Suggest updates to
-
Debugging and verification:
- Self-verification checklist : Before considering your work complete, you must verify that you've implemented all of the following:
- [ ] Registered
EngageBroadcastReceiverstatically inAndroidManifest.xml(inside the<application>tag). - [ ] Registered
EngageBroadcastReceiverdynamically by callingEngageBroadcastReceiver.register(context)in theApplicationclass or mainActivityclass. - [ ] Implemented the
registermethod inEngageBroadcastReceiver'scompanion objectto handle dynamic registration. - [ ] Handled empty data lists in
EngageWorker(for example, by deleting the cluster instead of publishing empty data). - [ ] Used
--no-daemonfor all Gradle compilations.
- [ ] Registered
- Perform a Gradle sync.
- If errors occur (such as import failures, namespace conflicts, or compile errors), read references/troubleshooting.md to resolve them.
- Execute a Gradle compilation. You must run
./gradlew compileDebugUnitTestSources --no-daemonor./gradlew assembleDebug --no-daemon. See references/troubleshooting.md for compile rules and warnings about fast-compilation shortcuts. Repeat this step until compilation is successful.
- Self-verification checklist : Before considering your work complete, you must verify that you've implemented all of the following:
-
User checklist: At the end of code generation, notify the user to go through this checklist to verify that the integration is complete and as intended:
- [ ] Verify that all the Engage-related files are created in
{ENGAGE_CODE_DIR}/:ConstantsItemToEntityConverterClusterRequestFactoryEngageWorker{cluster_type}PublisherEngageBroadcastReceiver
- [ ] Verify that app's local model is converted to Engage entity by populating the fields correctly in the model in
{ENGAGE_CODE_DIR}/ItemToEntityConverter. - [ ] Verify that all image URIs in
ItemToEntityConverterpoint to images matching the strict aspect ratio requirements of the vertical (for example, 16:9, 1:1, 2:3). - [ ] Verify that
{ENGAGE_CODE_DIR}/EngageWorkeruses the data source identified in Step 4. - [ ] Verify that
EngageBroadcastReceiver.register(context)is called within theApplicationclass orMainActivityto register the receiver dynamically. - [ ] Verify that
AndroidManifest.xmlcontains the static<receiver>declaration forEngageBroadcastReceiverwith the necessary intent actions. - Important : Explicitly instruct the developer to call
EngageBroadcastReceiver.register(context)inside their customApplicationclassonCreate()(or their main activityonCreate()) to dynamically register the receiver. Stress that both static and dynamic registrations are required for the integration to function.
- [ ] Verify that all the Engage-related files are created in
Reference materials
-
FAQ: Engage FAQ - Refer to this document for answers to frequently asked questions from developers.
-
Vertical-specific guides:
-
Vertical-specific schemas:
Version History
- aaca635 Current 2026-08-27 20:08
- 6685cac 2026-08-19 22:25
- 47e1dff 2026-07-24 22:27


