xref: /aosp_15_r20/external/jetpack-camera-app/settings.gradle.kts (revision 7e7863dab8204bb545ead586e736dea632e06846)
1*7e7863daSAndroid Build Coastguard Worker /*
2*7e7863daSAndroid Build Coastguard Worker  * Copyright (C) 2023 The Android Open Source Project
3*7e7863daSAndroid Build Coastguard Worker  *
4*7e7863daSAndroid Build Coastguard Worker  * Licensed under the Apache License, Version 2.0 (the "License");
5*7e7863daSAndroid Build Coastguard Worker  * you may not use this file except in compliance with the License.
6*7e7863daSAndroid Build Coastguard Worker  * You may obtain a copy of the License at
7*7e7863daSAndroid Build Coastguard Worker  *
8*7e7863daSAndroid Build Coastguard Worker  *      http://www.apache.org/licenses/LICENSE-2.0
9*7e7863daSAndroid Build Coastguard Worker  *
10*7e7863daSAndroid Build Coastguard Worker  * Unless required by applicable law or agreed to in writing, software
11*7e7863daSAndroid Build Coastguard Worker  * distributed under the License is distributed on an "AS IS" BASIS,
12*7e7863daSAndroid Build Coastguard Worker  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*7e7863daSAndroid Build Coastguard Worker  * See the License for the specific language governing permissions and
14*7e7863daSAndroid Build Coastguard Worker  * limitations under the License.
15*7e7863daSAndroid Build Coastguard Worker  */
16*7e7863daSAndroid Build Coastguard Worker 
<lambda>null17*7e7863daSAndroid Build Coastguard Worker pluginManagement {
18*7e7863daSAndroid Build Coastguard Worker     repositories {
19*7e7863daSAndroid Build Coastguard Worker         google()
20*7e7863daSAndroid Build Coastguard Worker         mavenCentral()
21*7e7863daSAndroid Build Coastguard Worker         gradlePluginPortal()
22*7e7863daSAndroid Build Coastguard Worker     }
23*7e7863daSAndroid Build Coastguard Worker }
24*7e7863daSAndroid Build Coastguard Worker @Suppress("UnstableApiUsage")
<lambda>null25*7e7863daSAndroid Build Coastguard Worker dependencyResolutionManagement {
26*7e7863daSAndroid Build Coastguard Worker     repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
27*7e7863daSAndroid Build Coastguard Worker     repositories {
28*7e7863daSAndroid Build Coastguard Worker         maven {
29*7e7863daSAndroid Build Coastguard Worker             setUrl("https://androidx.dev/snapshots/builds/12167802/artifacts/repository")
30*7e7863daSAndroid Build Coastguard Worker         }
31*7e7863daSAndroid Build Coastguard Worker         google()
32*7e7863daSAndroid Build Coastguard Worker         mavenCentral()
33*7e7863daSAndroid Build Coastguard Worker     }
34*7e7863daSAndroid Build Coastguard Worker }
35*7e7863daSAndroid Build Coastguard Worker rootProject.name = "Jetpack Camera"
36*7e7863daSAndroid Build Coastguard Worker include(":app")
37*7e7863daSAndroid Build Coastguard Worker include(":feature:preview")
38*7e7863daSAndroid Build Coastguard Worker include(":core:camera")
39*7e7863daSAndroid Build Coastguard Worker include(":feature:settings")
40*7e7863daSAndroid Build Coastguard Worker include(":data:settings")
41*7e7863daSAndroid Build Coastguard Worker include(":core:common")
42*7e7863daSAndroid Build Coastguard Worker include(":benchmark")
43*7e7863daSAndroid Build Coastguard Worker include(":feature:permissions")
44