원클릭으로
app-start-readiness-policy
Guidelines for coordinating splash screen dismissal with background data readiness
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for coordinating splash screen dismissal with background data readiness
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 | App Start Readiness Policy |
| description | Guidelines for coordinating splash screen dismissal with background data readiness |
To prevent "Welcome" state flashes and UI jumps, the app must remain on the splash screen until the initial data payload is fully synchronized and processed.
Use the AndroidX SplashScreen API to hold the screen:
splashScreen.setKeepOnScreenCondition {
!isAuthSuccessful || !isDataLoaded
}
isAuthSuccessful: Set after Biometric or Firebase Auth succeeds.isDataLoaded: Set ONLY after the first valid data snapshot is processed (e.g., calculateHeroData finishes).Always implement a 5-second postDelayed fallback in initializeApp to ensure the app never hangs indefinitely due to network or Firestore latency:
mainNestedScrollView.postDelayed({
if (!isDataLoaded) {
isDataLoaded = true
}
}, 5000)
NEVER call background tasks or safety timeouts before your views are fully initialized. This prevents UninitializedPropertyAccessException.
setContentViewfindViewById (All)auth/viewModel InitsafetyTimeout (Last)