Go to file
Paul Schaub 576b300732
Merge CleanArchitecture
2020-01-06 04:18:22 +01:00
app Reimplement entity caps caching 2020-01-06 03:41:37 +01:00
config/checkstyle Deactivate too strict checkstyle rules 2019-09-30 02:35:57 +02:00
core-old Too lazy to comment. Simplifications and rewrites of login 2019-12-21 00:27:48 +01:00
data Reimplement entity caps caching 2020-01-06 03:41:37 +01:00
documentation Add 512px logo png 2019-09-04 00:22:06 +02:00
domain Reimplement entity caps caching 2020-01-06 03:41:37 +01:00
entity Reimplement entity caps caching 2020-01-06 03:41:37 +01:00
gradle/wrapper Bump gradle version to 5.6.2 2019-09-30 02:23:39 +02:00
libs Update Smack again 2019-09-18 15:03:38 +02:00
utils Update smack-unique-snapshots.sh 2019-06-10 17:40:16 +02:00
.gitignore Add new icon 2019-08-29 00:21:24 +02:00
.gitmodules Point Smack submodule to mercury fork on codeberg 2019-09-13 12:02:24 +02:00
README.md Merge CleanArchitecture 2020-01-06 04:18:22 +01:00
build.gradle Merge CleanArchitecture 2020-01-06 04:18:22 +01:00
gradle.properties AndroidX 2019-05-18 10:06:16 +02:00
gradlew Initial commit 2019-03-27 21:24:47 +01:00
gradlew.bat Initial commit 2019-03-27 21:24:47 +01:00
mercury_icon.svg Add new icon 2019-08-29 00:21:24 +02:00
settings.gradle Disable core-old module 2020-01-06 01:27:29 +01:00
version.gradle Update some dependencies 2020-01-06 01:27:11 +01:00

README.md

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 the 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
  • 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'".