-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
35 lines (34 loc) · 991 Bytes
/
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
/*
* AndroidBottomSheetDialogCustumized by Stephanus Dai
* @fullname : Stephanus Bagus Saputra
* ( 戴 Dai 偉 Wie 峯 Funk )
* @email : [email protected]
* @contact : http://t.me/wiefunkdai
* @support : http://opencollective.com/wiefunkdai
* @weblink : http://www.stephanusdai.web.id
* Copyright (c) ID 2023 Stephanus Bagus Saputra. All rights reserved.
* Terms of the following https://stephanusdai.web.id/p/license.html
*/
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven {
setUrl("https://jitpack.io")
}
@Suppress("DEPRECATION")
jcenter()
}
}
rootProject.name = "AndroidBottomSheetDialogCustomized"
//include(":hekstardroid")
include(":app")