Yasith Vidanaarachchi | d3506c0 | 2023-10-11 16:40:38 -0400 | [diff] [blame] | 1 | /* |
| 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 Vidanaarachchi | a031ab8 | 2023-09-01 18:57:35 -0400 | [diff] [blame] | 17 | pluginManagement { |
| 18 | repositories { |
| 19 | google() |
| 20 | mavenCentral() |
| 21 | gradlePluginPortal() |
| 22 | } |
| 23 | } |
Jolanda Verhoef | 802d350 | 2024-04-15 20:17:57 +0100 | [diff] [blame] | 24 | @Suppress("UnstableApiUsage") |
Yasith Vidanaarachchi | a031ab8 | 2023-09-01 18:57:35 -0400 | [diff] [blame] | 25 | dependencyResolutionManagement { |
| 26 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) |
| 27 | repositories { |
| 28 | maven { |
Trevor McGuire | a8e92c7 | 2024-06-06 20:18:59 +0000 | [diff] [blame] | 29 | setUrl("https://androidx.dev/snapshots/builds/11932573/artifacts/repository") |
Yasith Vidanaarachchi | a031ab8 | 2023-09-01 18:57:35 -0400 | [diff] [blame] | 30 | } |
| 31 | google() |
| 32 | mavenCentral() |
| 33 | } |
| 34 | } |
| 35 | rootProject.name = "Jetpack Camera" |
| 36 | include(":app") |
| 37 | include(":feature:preview") |
Yasith Vidanaarachchi | b70e9d3 | 2024-06-27 16:47:11 -0400 | [diff] [blame] | 38 | include(":core:camera") |
Yasith Vidanaarachchi | a031ab8 | 2023-09-01 18:57:35 -0400 | [diff] [blame] | 39 | include(":feature:settings") |
| 40 | include(":data:settings") |
| 41 | include(":core:common") |
Kimberly Crevecoeur | e974bca | 2023-11-28 10:39:04 -0800 | [diff] [blame] | 42 | include(":benchmark") |
Kimberly Crevecoeur | 7075157 | 2024-05-22 08:08:28 -0700 | [diff] [blame] | 43 | include(":feature:permissions") |