-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
settings.gradle
65 lines (64 loc) · 1.88 KB
/
settings.gradle
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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(":audio-echo:app")
include(":base")
include(":bitmap-plasma:app")
include(":camera:basic")
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-libs:app")
// To generate libs used in this sample:
// 1) enable the gen-libs at end of this file
// 2) enable module build dependency in app/build.gradle
// 3) build the app's APK in Android Studio or on command line
// 4) undo step 1) and 2) above
// include(":hello-libs:gen-libs")
include(":hello-neon:app")
include(":hello-oboe:app")
include(":hello-vulkan:app")
include(":native-activity:app")
include(":native-audio:app")
include(":native-codec:app")
include(":native-media:app")
include(":native-midi:app")
include(":native-plasma:app")
include(":nn-samples:basic")
include(":nn-samples:sequence")
include(":orderfile:app")
include(":prefab:curl-ssl:app")
include(":prefab:prefab-dependency:app")
include(":prefab:prefab-publishing:mylibrary")
include(":san-angeles: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")