blob: a11937b2e9d7033ba042f611654f4baeda88690f [file] [log] [blame]
Sebastiano Barezzi380db732024-09-14 22:12:58 +02001/*
2 * SPDX-FileCopyrightText: 2024 The LineageOS Project
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6pluginManagement {
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}
19dependencyResolutionManagement {
20 repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
21 repositories {
22 google()
23 mavenCentral()
24 maven("https://jitpack.io")
25 }
26}
27
28rootProject.name = "Twelve"
29include(":app")