원클릭으로
android-15-standards
Guidelines for maintaining strict Android 15 (SDK 35) compliance in Varisankya.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for maintaining strict Android 15 (SDK 35) compliance in Varisankya.
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.
Guidelines for compiling Varisankya from the CLI without Android Studio.
How to correctly handle custom dates for extra subscription payments using MaterialDatePicker.
| name | Android 15 Standards |
| description | Guidelines for maintaining strict Android 15 (SDK 35) compliance in Varisankya. |
Varisankya is a showcase of modern Android development, strictly enforcing minSdk = 35 (Android 15). This skill outlines the technical and architectural reasons for this decision and the standards it imposes.
Android 15 makes edge-to-edge layout mandatory. Varisankya embraces this proactively:
fitsSystemWindows.WindowCompat.setDecorFitsSystemWindows(window, false) and enableEdgeToEdge() in BaseActivity.Targeting SDK 35 allows us to use the strictest security defaults without backward compatibility layers:
androidx.credentials exclusively for authentication (Google Sign-In). Legacy GoogleSignInClient is banned.androidx.biometric with strict BIOMETRIC_STRONG requirements.The minSdk 35 requirement is a strategic choice to avoid technical debt:
HapticFeedbackConstants introduced in newer APIs (e.g., CONFIRM, REJECT) freely.