원클릭으로
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/