forked from vvb2060/KeyAttestation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
26 lines (26 loc) · 705 Bytes
/
Copy pathsettings.gradle
File metadata and controls
26 lines (26 loc) · 705 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
pluginManagement {
repositories {
google()
mavenCentral()
}
plugins {
id("com.android.application") version '8.8.0'
id("com.android.library") version '8.8.0'
id("org.jetbrains.kotlin.android") version "2.1.0"
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google {
content {
includeGroupAndSubgroups("androidx")
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google")
}
}
mavenCentral()
}
}
rootProject.name = "KeyAttestation"
include(":app", ":stub")