-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
33 lines (28 loc) · 891 Bytes
/
Copy pathsettings.gradle.kts
File metadata and controls
33 lines (28 loc) · 891 Bytes
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
// Gradle workspace root for the Android host packages.
//
// Library modules live one level down at `android/<package>/`. Run
// `gradle :<package>:publish*` from this directory; consumers integrate
// via Maven coordinates, not by including a module from their own
// settings.gradle.kts.
//
// The rest of the repo (Rust crates, JS packages, iOS Swift Package) does
// not use Gradle.
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "truapi"
include(":truapi-host")
project(":truapi-host").projectDir = file("android/truapi-host")
include(":truapi-provider")
project(":truapi-provider").projectDir = file("android/truapi-provider")