Mobile app to rule all Flipper's family
├── app
├── core
├── bridge
├── modules
│ ├── sample1
│ ├── sample2
app
- Main application module with UIcore
- Core library with deps and utilsbridge
- Communication between android and Flippermodules
- Community widget module
├── app
│ ├── feature1
│ │ ├── di
│ │ ├── ui
│ │ │ ├── view <-- custom views
│ │ │ ├── data <-- screen specific data classes
│ │ ├── interactor
│ │ │ ├── data <-- layer specific data classes
│ │ ├── repository
│ │ │ ├── data <-- layer specific data classes
data
- Entity layerview
- Presentation layerinteractor
- Domain layerrepository
- Data layer