-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
40 lines (34 loc) · 1 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
// Copyright 2024, Addhen Ltd and the kanalytics project contributors
// SPDX-License-Identifier: Apache-2.0
pluginManagement {
includeBuild("convention-plugins")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/") }
mavenLocal()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
// https://docs.gradle.org/7.6/userguide/configuration_cache.html#config_cache:stable
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
// setting project name to kanalytics-lib to curtail an issue with conflicts kanalytics name due to
// gradle's typesafe project accessors feature
rootProject.name = "kanalytics-lib"
include(
":kanalytics",
":kanalytics-viewer",
":kanalytics-viewer-no-op",
":kanalytics-viewer-base-profile",
":android-common-test",
":sample:android",
":sample:shared",
":sample:ios-framework",
)