-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathsettings.gradle.kts
39 lines (35 loc) · 940 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
36
37
38
39
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
// Define locations for build logic
pluginManagement {
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"com.android.application", "com.android.library" -> useModule("com.android.tools.build:gradle:${requested.version}")
"kotlin-android" -> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
}
}
}
repositories {
gradlePluginPortal()
google()
mavenCentral()
jcenter()
maven(url = "https://jitpack.io")
maven(url = "https://plugins.gradle.org/m2/")
}
}
// Define locations for components
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
jcenter()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
rootProject.name = ("Pano360")
include(":filepicker")
include(":pano360demo")
include(":vrlib")