Android Concurrency Standards Priority: P0 Implementation Guidelines Structured Concurrency - Scopes : Always use (VM) or (Activity/Fragment). - Dispatchers : INJECT Dispatchers ( ) for testability. not hardcode . Flow usage - Cold Streams : Use for data streams. - Hot Streams : Use (State) or (Events). - Replay : Use with only when late subscribers must receive recent events. - Collection : Use (Compose) or (Views). Anti-Patterns - No GlobalScope : Use viewModelScope or lifecycleScope — never GlobalScope. - No async/await by default : Prefer simple suspend functions; async only for parallel…