Andorid app without fancy libraries
superhero
- no Jetpack libs
- no dependency injection
- no Retrofit
- no Coroutines or Rx
Simple
using all that Android provides to make an app. Navigation is done with the help of backstack, with single Activity.
Instead of DI, there is service locator pattern. Reqeusts to BE are done by OkHTTP with the help of my own ViewModel.