moves diff-match-patch module to library

This commit is contained in:
ericdecanini 2022-02-22 19:40:17 +01:00
parent 116f7d0575
commit b4ceaefeab
6 changed files with 3 additions and 3 deletions

View File

@ -138,7 +138,7 @@ project(":vector") {
} }
} }
project(":diff-match-patch") { project(":library:diff-match-patch") {
sonarqube { sonarqube {
skipProject = true skipProject = true
} }

View File

@ -1,9 +1,9 @@
include ':vector' include ':vector'
include ':matrix-sdk-android' include ':matrix-sdk-android'
include ':diff-match-patch'
include ':attachment-viewer' include ':attachment-viewer'
include ':multipicker' include ':multipicker'
include ':library:core-utils' include ':library:core-utils'
include ':library:ui-styles' include ':library:ui-styles'
include ':library:jsonviewer' include ':library:jsonviewer'
include ':library:diff-match-patch'
include ':matrix-sdk-android-flow' include ':matrix-sdk-android-flow'

View File

@ -335,12 +335,12 @@ dependencies {
implementation project(":matrix-sdk-android") implementation project(":matrix-sdk-android")
implementation project(":matrix-sdk-android-flow") implementation project(":matrix-sdk-android-flow")
implementation project(":diff-match-patch")
implementation project(":multipicker") implementation project(":multipicker")
implementation project(":attachment-viewer") implementation project(":attachment-viewer")
implementation project(":library:jsonviewer") implementation project(":library:jsonviewer")
implementation project(":library:ui-styles") implementation project(":library:ui-styles")
implementation project(":library:core-utils") implementation project(":library:core-utils")
implementation project(":library:diff-match-patch")
implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.multidex:multidex:2.0.1'
implementation libs.jetbrains.coroutinesCore implementation libs.jetbrains.coroutinesCore