Sebastiano Barezzi | 380db73 | 2024-09-14 22:12:58 +0200 | [diff] [blame] | 1 | /* |
| 2 | * SPDX-FileCopyrightText: 2024 The LineageOS Project |
| 3 | * SPDX-License-Identifier: Apache-2.0 |
| 4 | */ |
| 5 | |
| 6 | pluginManagement { |
| 7 | repositories { |
| 8 | google { |
| 9 | content { |
| 10 | includeGroupByRegex("com\\.android.*") |
| 11 | includeGroupByRegex("com\\.google.*") |
| 12 | includeGroupByRegex("androidx.*") |
| 13 | } |
| 14 | } |
| 15 | mavenCentral() |
| 16 | gradlePluginPortal() |
| 17 | } |
| 18 | } |
| 19 | dependencyResolutionManagement { |
| 20 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) |
| 21 | repositories { |
| 22 | google() |
| 23 | mavenCentral() |
| 24 | maven("https://jitpack.io") |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | rootProject.name = "Twelve" |
| 29 | include(":app") |