overseas-android-google-play

overseas-android-google-play is a skill for Claude Code, Codex from lh17708357536-gif/flutter-cn-overseas-app-skills. It costs 69 tokens per session (3,359 once invoked), scanned A, original, MIT.

A Flutter Android configuration for a separate overseas Google Play version of an app. A flavor is a build variant that can use different package names, services, and settings for different markets.

In plain words
What is it for?
Use it to configure Firebase and Google Play Billing, separate push-notification settings, add an international package suffix, and apply overseas content moderation services.
Why use it?
It keeps overseas publishing and services separate from a domestic version and prevents unsupported regional SDKs or package conflicts.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it to configure Firebase and Google Play Billing, separate push-notification settings, add an international package suffix, and apply overseas content moderation services.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lh17708357536-gif/flutter-cn-overseas-app-skills/overseas-android-google-play
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add lh17708357536-gif/flutter-cn-overseas-app-skills --skill overseas-android-google-play
Clone the repo
git clone --depth 1 https://github.com/lh17708357536-gif/flutter-cn-overseas-app-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for overseas-android-google-play

README.md
[![agentmods](https://agentmods.dev/badge/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/overseas-android-google-play/github.svg)](https://agentmods.dev/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/overseas-android-google-play)
Your own site
<a href="https://agentmods.dev/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/overseas-android-google-play"><img src="https://agentmods.dev/badge/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/overseas-android-google-play/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for overseas-android-google-play

Your own site · 80×15
<a href="https://agentmods.dev/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/overseas-android-google-play"><img src="https://agentmods.dev/badge/skills/lh17708357536-gif/flutter-cn-overseas-app-skills/overseas-android-google-play.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,359 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00069 $0.03359
Opus 5 $0.00034 $0.01680
Sonnet 5 $0.00014 $0.00672
Haiku 4.5 $0.00007 $0.00336

Measured 12d ago against content hash f57f68a7e42d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

overseas-android-google-play scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/overseas-android-google-play/SKILL.md · 331 lines

How it starts

The opening of the file, as written. The whole thing — 331 lines — stays where its author put it; the contents beside it link to each section on GitHub.

海外 Android(Google Play)发布 Skill

适用于 Flutter 应用同时上架国内与海外市场时,海外这条独立分支。所有 <PLACEHOLDER> 替换为项目实际值。

1. 硬约束(不可违反)

  • 海外 flavor 禁止包含 JPush — 海外用户接收不到 JPush,且部分海外市场(特别是 Google Play)合规审核会拦截不必要的中国推送 SDK
  • 海外 flavor 禁止包含 WeChat / Alipay SDK — Google Play 不接受未经合规审查的中国支付 SDK
  • 海外 flavor 禁止指向中国本地 CDN(loli.net 等) — 中国镜像在海外速度慢、可能被海外审计标为"可疑"
  • 海外 flavor 必须包含 Firebase / FCM — Google Play 上架对推送链路的合规默认方案
  • applicationId 必须有 .intl 后缀(或类似),与国内包名隔离,避免商店冲突

2. build.gradle.kts flavor 模板

前提flutter create 默认生成 Groovy DSL(build.gradle),本节模板是 Kotlin DSL。如果项目还没迁,先 mv build.gradle build.gradle.kts 并按 KTS 语法改写。详见 flutter-multi-region-dev skill 第三节 Step 3 的 DSL 提示。

android {
    flavorDimensions += "market"
    productFlavors {
        create("cn") {
            // 国内 flavor 详见 cn-android-flavor skill
        }
        create("overseas") {
            dimension = "market"
            applicationId = "<APP_PACKAGE>.intl"   // 例:com.acme.myapp.intl
            manifestPlaceholders["MARKET"] = "overseas"
            // Flutter 插件清单仍可能解析这些 placeholder;海外包运行时不初始化 JPush
            manifestPlaceholders["JPUSH_PKGNAME"] = applicationId as Any
            manifestPlaceholders["JPUSH_APPKEY"] = "DISABLED_FOR_OVERSEAS"
            manifestPlaceholders["JPUSH_CHANNEL"] = "overseas"
        }
    }
}

3. 目录隔离

android/app/src/
├── main/                      # 双 flavor 共用源码与 manifest
├── cn/
│   ├── AndroidManifest.xml    # JPush meta-data 等中国相关
│   └── ... (cn 专属 Java/Kotlin)
└── overseas/
    ├── AndroidManifest.xml     # FCM meta-data
    ├── google-services.json    # ★ Firebase 配置文件,仅 overseas 编译时打包
    └── ... (overseas 专属 Java/Kotlin)

4. Firebase / FCM 集成

pubspec.yaml

dependencies:
  firebase_core: ^3.x.x
  firebase_messaging: ^15.x.x

android/app/build.gradle.kts

dependencies {
    // 仅 overseas flavor 编译时引入 Firebase;cn flavor 自动排除
    add("overseasImplementation", "com.google.firebase:firebase-bom:33.x.x")
    add("overseasImplementation", "com.google.firebase:firebase-messaging")
}

Read the full file on GitHub · 331 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 331 lines · 69 tokens per session scan A f57f68a7e42d

Subscribe to this mod's changes

overseas-android-google-play is a skill published in the GitHub repository lh17708357536-gif/flutter-cn-overseas-app-skills (20 stars, last pushed 2mo ago), licensed MIT. It adds 69 tokens to every session and 3,359 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

app-store-preflight-compliance

Pre-submission compliance scanner workflow for Apple App Store apps. Use when reviewing iOS, macOS, tvOS, watchOS, or visionOS projects (Swift, Objective-C, React Native, Expo) for App Store rejection risks, submission readiness, privacy compliance, or guideline violations.

RevylAI/greenlight · 65 tokens

gingiris-aso-growth

A broad guide to growing mobile apps through App Store Optimization, launch planning, creator-made content, and marketing on platforms such as TikTok, Instagram, and YouTube Shorts.

Gingiris-1031/gingiris-skills · 320 tokens

app-paywall-pilot

Design, audit, debug, and implement App Store-compliant mobile paywalls, subscription flows, pricing screens, trials, offers, feature gates, and subscription lifecycle UX. Use when the user asks to audit my paywall, fix App Store 3.1.2 rejection, improve trial-to-paid, choose plans/prices/trials, review…

Nikolai-Iakubovskii/app-paywall-pilot · 101 tokens

ipaship-audit

Use when auditing iOS/Android app submissions for compliance with Apple App Store Review Guidelines or Google Play Developer Policies. Scan .ipa, .apk, or .zip files against official store policies, generate structured compliance reports, and identify violations with remediation steps.

atharvnaik1/ipaship-audit · 57 tokens

aso-asc

Apple App Store Connect API integration. Fetch iOS app metadata, reviews, ratings, and version info directly from App Store Connect. Requires API key. Triggers on: "app store connect", "asc".

FelixGraeber/claude-aso-audit-skill · 46 tokens

mobile-engineer

You are the Mobile Engineer Specialist — a cross-platform mobile development expert who builds performant, production-ready mobile applications. You specialize in React Native (Expo) and Flutter, with deep expertise in native integrations, offline-first architectures, and app store deployment.

buiphucminhtam/forgewright · 56 tokens