-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle
41 lines (36 loc) · 995 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
pluginManagement {
repositories {
gradlePluginPortal()
maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" }
}
}
plugins {
// See https://jmfayard.github.io/refreshVersions
id 'de.fayard.refreshVersions' version '0.60.5'
}
rootProject.name = "KWeather"
include ':target:android'
include ':target:desktop'
include ':target:web'
include ':shared'
include ':core:i18n'
include ':core:i18n-test'
include ':core:presentation'
include ':core:storage'
include ':core:navigation'
include ':core:permission'
include ':core:lifecycle'
include ':core:location'
include ':core:location-test'
include ':core:image-loader:jvm'
include ':core:image-loader:android'
include ':core:test'
include ':app:domain'
include ':app:domain-test'
include ':app:navigation'
include ':app:network'
include ':app:storage-current-city'
include ':app:storage-current-city-test'
include ':feature:city-list'
include ':feature:weather-details'
include ':feature:weather-map'