Merge pull request #5309 from vector-im/feature/eric/modules-to-subfolder

#5289:  Moves modules to subfolders under library
This commit is contained in:
Benoit Marty 2022-02-22 22:58:14 +01:00 committed by GitHub
commit 924a4f8c94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
58 changed files with 8 additions and 7 deletions

View file

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

1
changelog.d/5309.misc Normal file
View file

@ -0,0 +1 @@
Moves attachment-viewer, diff-match-patch, and multipicker modules to subfolders under library

View file

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

View file

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