-
Notifications
You must be signed in to change notification settings - Fork 82
/
settings.gradle
51 lines (42 loc) · 1.18 KB
/
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
42
43
44
45
46
47
48
49
50
51
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "canaree"
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
}
gradle.ext.exoplayerRoot = 'exoplayer'
gradle.ext.exoplayerModulePrefix = 'exoplayer-'
apply from: new File(gradle.ext.exoplayerRoot, 'core_settings.gradle')
include ':app'
include ':core'
include ':common:shared'
include ':common:platform'
include ':common:ui'
include ':common:localization'
include ':feature:main:api'
include ':feature:media:api', ':feature:media:impl'
include ':feature:bubble:api', ':feature:bubble:impl'
include ':feature:widget:api', ':feature:widget:impl'
include ':feature:shortcuts:api', ':feature:shortcuts:impl'
include ':shared-widgets'
include ':presentation'
include ':data'
include ':image-provider'
include ':prefs-keys'
include ':jaudiotagger'
include ':offline-lyrics'
include ':intents'
include ':equalizer'