-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.gradle.kts
51 lines (44 loc) · 1.17 KB
/
settings.gradle.kts
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
42
43
44
45
46
47
48
49
50
51
include(":features:charts")
include(":features:profile")
include(":features:details")
include(":features:history")
include(":features:search")
include(":features:settings")
include(":features:scrobble")
include(":libraries:authentication")
include(":libraries:image")
include(":libraries:submission")
include(":libraries:persistence")
include(":libraries:network:common")
include(":libraries:network:spotify")
include(":libraries:network:lastfm")
include(":libraries:model")
include(":libraries:core")
include(":libraries:compose")
include(":libraries:resources")
include(":app")
rootProject.name = "Scrobbler"
pluginManagement {
repositories {
maven(url = "https://dl.bintray.com/kotlin/kotlin-eap/")
gradlePluginPortal()
jcenter()
google()
}
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"dagger.hilt.android.plugin" ->
useModule("com.google.dagger:hilt-android-gradle-plugin:2.28-alpha:${requested.version}")
}
}
}
}
plugins {
id("de.fayard.refreshVersions") version "0.10.0"
}
buildscript {
repositories {
gradlePluginPortal()
}
}