blob: b021ba155481e8e6ec5a45059552970f6b74c66c [file] [log] [blame]
Yasith Vidanaarachchid3506c02023-10-11 16:40:38 -04001/*
2 * Copyright (C) 2023 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yasith Vidanaarachchia031ab82023-09-01 18:57:35 -040017pluginManagement {
18 repositories {
19 google()
20 mavenCentral()
21 gradlePluginPortal()
22 }
23}
Jolanda Verhoef802d3502024-04-15 20:17:57 +010024@Suppress("UnstableApiUsage")
Yasith Vidanaarachchia031ab82023-09-01 18:57:35 -040025dependencyResolutionManagement {
26 repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
27 repositories {
28 maven {
Trevor McGuirea8e92c72024-06-06 20:18:59 +000029 setUrl("https://androidx.dev/snapshots/builds/11932573/artifacts/repository")
Yasith Vidanaarachchia031ab82023-09-01 18:57:35 -040030 }
31 google()
32 mavenCentral()
33 }
34}
35rootProject.name = "Jetpack Camera"
36include(":app")
37include(":feature:preview")
Yasith Vidanaarachchib70e9d32024-06-27 16:47:11 -040038include(":core:camera")
Yasith Vidanaarachchia031ab82023-09-01 18:57:35 -040039include(":feature:settings")
40include(":data:settings")
41include(":core:common")
Kimberly Crevecoeure974bca2023-11-28 10:39:04 -080042include(":benchmark")
Kimberly Crevecoeur70751572024-05-22 08:08:28 -070043include(":feature:permissions")