added new modules
This commit is contained in:
parent
0532061e9d
commit
4350eee3cf
24
build.gradle
24
build.gradle
|
|
@ -28,16 +28,18 @@ task clean(type: Delete) {
|
|||
ext {
|
||||
ext.buildScriptsDir = "$rootDir/BuildScripts"
|
||||
versions = [
|
||||
compileSdk : 28,
|
||||
appcompat : '1.0.2',
|
||||
androidx : '1.0.0',
|
||||
material : '1.0.0',
|
||||
lifecycle : '2.0.0',
|
||||
dagger : '2.17',
|
||||
retrofit : '2.4.0',
|
||||
rxJava : '2.2.2',
|
||||
rxAndroid : '2.1.0',
|
||||
crashlytics: '2.9.5',
|
||||
location : '16.0.0'
|
||||
compileSdk : 28,
|
||||
appcompat : '1.0.2',
|
||||
androidx : '1.0.0',
|
||||
material : '1.0.0',
|
||||
lifecycle : '2.0.0',
|
||||
dagger : '2.17',
|
||||
retrofit : '2.4.0',
|
||||
rxJava : '2.2.2',
|
||||
rxAndroid : '2.1.0',
|
||||
crashlytics : '2.9.5',
|
||||
location : '16.0.0',
|
||||
yandex_mapkit: '3.4.0',
|
||||
google_maps : '16.1.0'
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,6 +19,9 @@ include ':views'
|
|||
include ':recyclerview-adapters'
|
||||
include ':kotlin-extensions'
|
||||
include ':templates'
|
||||
include ':base-map'
|
||||
include ':yandex-map'
|
||||
include ':google-map'
|
||||
|
||||
project(':utils').projectDir = new File(rootDir, 'utils')
|
||||
project(':logging').projectDir = new File(rootDir, 'logging')
|
||||
|
|
@ -31,3 +34,6 @@ project(':views').projectDir = new File(rootDir, 'views')
|
|||
project(':recyclerview-adapters').projectDir = new File(rootDir, 'recyclerview-adapters')
|
||||
project(':kotlin-extensions').projectDir = new File(rootDir, 'kotlin-extensions')
|
||||
project(':templates').projectDir = new File(rootDir, 'templates')
|
||||
project(':base-map').projectDir = new File(rootDir, 'base-map')
|
||||
project(':yandex-map').projectDir = new File(rootDir, 'yandex-map')
|
||||
project(':google-map').projectDir = new File(rootDir, 'google-map')
|
||||
|
|
|
|||
Loading…
Reference in New Issue