-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Expand file tree
/
Copy pathsettings.gradle
More file actions
49 lines (48 loc) · 1.29 KB
/
settings.gradle
File metadata and controls
49 lines (48 loc) · 1.29 KB
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
41
42
43
44
45
46
47
48
49
pluginManagement {
includeBuild("build-logic")
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "NDK Samples"
include(":base")
include(":bitmap-plasma:app")
include(":camera:basic")
include(":camera:camera-utils")
include(":camera:texture-view")
include(":endless-tunnel:app")
include(":exceptions:app")
include(":gles3jni:app")
include(":hello-gl2:app")
include(":hello-jni:app")
include(":hello-jniCallback:app")
include(":hello-vulkan:app")
include(":native-activity:app")
include(":native-audio:app")
include(":native-codec:app")
include(":native-midi:app")
include(":orderfile:app")
include(":sanitizers:app")
include(":sensor-graph:accelerometer")
include(":teapots:choreographer-30fps")
include(":teapots:classic-teapot")
include(":teapots:image-decoder")
include(":teapots:more-teapots")
include(":teapots:textured-teapot")
include(":unit-test:app")
include(":vectorization")