Mercury-IM/README.md

26 lines
945 B
Markdown
Raw Normal View History

2019-04-14 18:50:06 +02:00
# Messenger
## Used Design Methods:
2019-12-01 23:21:07 +01:00
* Mercury IM's development follows architectural principles know from
[Clean Architecture](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html).
* The app is developed using the MVVM (Model View Viewmodel) pattern
* Components are wired together using Dependency Injection (DI) with [Dagger 2](https://dagger.dev)
2020-01-06 04:18:22 +01:00
* Data is persisted using the [requery](https://github.com/requery/requery) ORM framework
## Building
```
git clone <project-url>
cd <project-directory>
git submodule update --init --recursive
gradle assembleDebug
```
## FAQ
* I want to develop, but lots of `org.jivesoftware.smackx.*` classes cannot be found!
* You forgot to type `git submodule init && git submodule update` as mentioned above
2019-12-01 23:21:07 +01:00
* It looks like I'm missing `org.mercury_im.messenger.data.*` classes???
2020-01-06 04:18:22 +01:00
* In Android Studio select the `data` module and then click "Build -> Make Module 'data'".