-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
28 lines (24 loc) · 668 Bytes
/
settings.gradle.kts
File metadata and controls
28 lines (24 loc) · 668 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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
@Suppress("UnstableApiUsage")
repositories {
google()
mavenCentral()
}
}
plugins {
id("com.autonomousapps.build-health") version "2.17.0"
id("org.jetbrains.kotlin.jvm") version "2.1.21" apply false
id("com.android.application") version "8.10.0" apply false
id("org.jetbrains.kotlin.android") version "2.1.21" apply false
}
rootProject.name = "Save Locally"
include(":app")