For a new android composable project, should I be ...
# compose
k
For a new android composable project, should I be using single activity or have multiple activities within the app? What would best most appropriate approach at this point?
c
Single Activity has been the official recommended approach on Android for a number of years now and compose just furthers that point. In general, the only reason you'd have multiple activities is if you deem it necessary/multiple entry points that would benefit from doing so.