Skip to content
OpenSmartRoute
Skillv1.0.0

engage-sdk-integration

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-re

by android(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from android/skills (play/engage-sdk-integration/SKILL.md) via skills.sh. Install upstream with npx skills add android/skills --skill engage-sdk-integration. Copyright stays with the author (Complete terms in LICENSE.txt).

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:

  1. 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}.md in the references/schemas/ directory to identify the corresponding Engage entities and the client class name. The client field in the JSON provides the full class name. For example, com.google.android.engage.food.service.AppEngageFoodClient.
    • Note: Initializing the client class requires a Context parameter. 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}.md in 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.
  2. 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 from EngagePublisher. Important : Implement both static registration and dynamic registration patterns, including the companion object register method inside the EngageBroadcastReceiver class.
  3. 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}.md in 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 ItemToEntityConverter pattern in patterns.md and add it to the generated {ENGAGE_CODE_DIR}/ItemToEntityConverter.
  4. 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}/ItemToEntityConverter to convert this data to an Engage entity.
    • Use obtained Engage entity model data with {ENGAGE_CODE_DIR}/ ClusterRequestFactory to get cluster requests.
    • Call corresponding cluster publishing method obtained from {VERTICAL}.md in the references/schemas/ directory with the obtained request in previous step in {ENGAGE_CODE_DIR}/EngageWorker.
  5. Gradle and manifest updates:

    • Suggest updates to build.gradle and AndroidManifest.xml.
    • For mobile apps, use patterns.md.
    • For TV apps, use the TV-specific sections in patterns.md.
    • Provide the necessary implementation dependencies for build.gradle or build.gradle.kts from patterns.md.
    • Provide the <receiver> and <service> declarations for AndroidManifest.xml.
    • Note: Except for TV, there aren't any vertical-specific imports. For all other verticals, com.google.android.engage:engage-core:1.6.0 is sufficient.
  6. Debugging and verification:

    • Self-verification checklist : Before considering your work complete, you must verify that you've implemented all of the following:
      • [ ] Registered EngageBroadcastReceiver statically in AndroidManifest.xml (inside the <application> tag).
      • [ ] Registered EngageBroadcastReceiver dynamically by calling EngageBroadcastReceiver.register(context) in the Application class or main Activity class.
      • [ ] Implemented the register method in EngageBroadcastReceiver's companion object to handle dynamic registration.
      • [ ] Handled empty data lists in EngageWorker (for example, by deleting the cluster instead of publishing empty data).
      • [ ] Used --no-daemon for all Gradle compilations.
    • 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-daemon or ./gradlew assembleDebug --no-daemon. See references/troubleshooting.md for compile rules and warnings about fast-compilation shortcuts. Repeat this step until compilation is successful.
  7. 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}/:
      • Constants
      • ItemToEntityConverter
      • ClusterRequestFactory
      • EngageWorker
      • {cluster_type}Publisher
      • EngageBroadcastReceiver
    • [ ] 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 ItemToEntityConverter point to images matching the strict aspect ratio requirements of the vertical (for example, 16:9, 1:1, 2:3).
    • [ ] Verify that {ENGAGE_CODE_DIR}/EngageWorker uses the data source identified in Step 4.
    • [ ] Verify that EngageBroadcastReceiver.register(context) is called within the Application class or MainActivity to register the receiver dynamically.
    • [ ] Verify that AndroidManifest.xml contains the static <receiver> declaration for EngageBroadcastReceiver with the necessary intent actions.
    • Important : Explicitly instruct the developer to call EngageBroadcastReceiver.register(context) inside their custom Application class onCreate() (or their main activity onCreate()) to dynamically register the receiver. Stress that both static and dynamic registrations are required for the integration to function.

Reference materials

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/android-skills-engage-sdk-integration/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

android-skills-engage-sdk-integration.ocm.jsonjson
{
  "ocm": "1",
  "id": "android-skills-engage-sdk-integration",
  "kind": "skill",
  "name": "engage-sdk-integration",
  "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.",
  "publisher": "android",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "android",
      "engage",
      "engage-sdk",
      "play-engage-library",
      "google-play",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/android/skills",
      "path": "play/engage-sdk-integration/SKILL.md",
      "ref": "HEAD",
      "url": "https://www.skills.sh/android/skills/engage-sdk-integration",
      "key": "android/skills/play/engage-sdk-integration/SKILL.md"
    },
    "license": "Complete terms in LICENSE.txt"
  },
  "instructions": "This skill guides you through integrating the Play Engage SDK into an Android\napp. It ensures that the code follows the mandatory structure and uses the\nrequired Engage entities for each vertical.\n\n## Workflow\n\nFollow these steps to assist the developer:\n\n1. **Identify vertical and cluster:**\n\n   - Ask the developer which vertical their app belongs to based on **[references/schemas/](references/schemas)**.\n   - Check if the integration is for TV or mobile. If the integration is for TV, read the TV-specific sections in [patterns.md](references/patterns.md) as well.\n   - Use `{VERTICAL}.md` in t",
  "cost": {
    "context_tokens": 2258
  }
}

Fetch it by URL: GET /api/v1/registry/android-skills-engage-sdk-integration/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.