원클릭으로
headless-linux-android-builds
Guidelines for compiling Varisankya from the CLI without Android Studio.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for compiling Varisankya from the CLI without Android Studio.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guidelines for managing Varisankya releases across Beta and Production tracks.
How to safely record extra payments without advancing the Varisankya subscription next due date.
Instructions for extracting the Play Store upload keystore, Firebase JSON, and passwords from Bitwarden.
Standard operating procedure for concluding an AI agent session and ensuring workspace integrity.
How to correctly handle custom dates for extra subscription payments using MaterialDatePicker.
Guidelines for implementing M3 Expressive (M3E) animations, transitions, and touch physics in Varisankya.
| name | Headless Linux Android Builds |
| description | Guidelines for compiling Varisankya from the CLI without Android Studio. |
Varisankya is now built headlessly using the Gemini CLI on an Ubuntu environment. Android Studio is not required.
~/Android/Sdk.ANDROID_HOME is set globally in ~/.bashrc.local.properties contains sdk.dir=/home/aarsh/Android/Sdk.Run Gradle non-interactively using the CLI wrapper.
./gradlew assembleDebug (Outputs to app/build/outputs/apk/debug/app-debug.apk)./gradlew assembleRelease (Outputs to app/build/outputs/apk/release/app-release.apk)If the build fails complaining about "SDK location not found", ensure local.properties exists in the workspace root with the correct sdk.dir definition.
Always build the app completely (assembleDebug or assembleRelease) to empirically validate code changes. Do not assume syntax is correct without compilation.