-
-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathsettings.gradle
More file actions
39 lines (37 loc) · 1.29 KB
/
settings.gradle
File metadata and controls
39 lines (37 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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
}
}
dependencyResolutionManagement {
// PREFER_PROJECT allows Kotlin/JS plugin to add Node.js and Yarn repositories
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
mavenLocal()
mavenCentral()
google()
}
}
rootProject.name = "SceneView"
include ":sceneview-core"
include ":sceneview"
include ":arsceneview"
include ":sceneview-web"
// Samples — one unified showcase per platform ({platform}-demo)
include ":samples:common"
include ":samples:android-demo" // Android (Play Store)
include ":samples:android-demo-assets" // Play Asset Delivery (install-time)
include ":samples:android-tv-demo" // Android TV
include ":samples:web-demo" // Web (Filament.js + WebXR)
include ":samples:desktop-demo" // Desktop (Windows/macOS/Linux)
// Flutter demo: samples/flutter-demo/ (Dart, not Gradle)
// React Native demo: samples/react-native-demo/ (JS, not Gradle)
// iOS demo: samples/ios-demo/ (Xcode, not Gradle)