Android Navigation (Jetpack Compose) Priority: P2 (OPTIONAL) Guidelines - Library : Use . - Type Safety : Use sealed classes for routes, never raw strings. - Deep Links : Configure in Manifest and in NavHost. - Validation : Validate arguments (e.g., proper IDs) before loading content. Anti-Patterns - No String Routes : Use instead of . - No Unvalidated Deep Links : Check resource existence before rendering. - No Missing Manifest : Deep links require intent filters. References - Navigation Patterns ---