一键导入
android-deployment
Android app deployment workflows covering Play Store releases, CI/CD pipelines, code signing, and Tauri mobile distribution.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Android app deployment workflows covering Play Store releases, CI/CD pipelines, code signing, and Tauri mobile distribution.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Continuously improves the project by checking docs (web, Context7, opencode), using LSPs for code context, monitoring skills/plugins/scripts, and adapting best practices.
Continuity management — preserves context, maintains thermal maps, and serializes states across sessions
Read diffs carefully, identify risks, and produce review feedback that is specific and actionable.
Write accurate docs, keep references current, and capture verified behavior only.
Branching, rebasing, commit hygiene, and review-friendly history for agency delivery.
Use the language server for precise navigation, symbol lookup, refactoring, and diagnostics.
| name | android-deployment |
| displayName | Android Deployment & CI |
| description | Android app deployment workflows covering Play Store releases, CI/CD pipelines, code signing, and Tauri mobile distribution. |
| category | mobile |
| tags | ["android","deployment","play-store","ci-cd","code-signing","tauri-mobile"] |
| agents | ["android-kotlin","devops-engineer"] |
| toolkit_refs | ["gradle","mobile"] |
./gradlew assembleDebug
# Output: app/build/outputs/apk/debug/app-debug.apk
./gradlew assembleRelease
# Output: app/build/outputs/apk/release/app-release.apk
build.gradle.kts./gradlew bundleRelease./gradlew bundleRelease
# Output: app/build/outputs/bundle/release/app-release.aab
// signing.gradle.kts
android {
signingConfigs {
create("release") {
storeFile = file("../keystore/release.keystore")
storePassword = System.getenv("KEYSTORE_PASSWORD")
keyAlias = System.getenv("KEY_ALIAS")
keyPassword = System.getenv("KEY_PASSWORD")
}
}
}
The android-build-test-deploy workflow orchestrates:
For full pipeline, run: /workflow android-build-test-deploy
src-tauri/gen/android/cargo tauri android buildsrc-tauri/gen/android/app/build/outputs/apk/