mirror of
https://codeberg.org/Mercury-IM/Mercury-IM
synced 2024-11-10 18:15:57 +01:00
929 B
929 B
Messenger
Used Design Methods:
- Mercury IM's development follows architectural principles know from Clean Architecture.
- The app is developed using the MVVM (Model View Viewmodel) pattern
- Components are wired together using Dependency Injection (DI) with Dagger 2
- Data is persisted using requery
Building
git clone <project-url>
cd <project-directory>
git submodule init && git submodule update
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
- You forgot to type
- It looks like I'm missing
org.mercury_im.messenger.data.*
classes???- In Android Studio select the
data
module and then click "Build -> Make Module 'data'".
- In Android Studio select the