Created
November 19, 2025 14:50
-
-
Save OliverVicente/065be003ac9122167ecfce3d8b0a19ef to your computer and use it in GitHub Desktop.
Build Logic settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pluginManagement { | |
| repositories { | |
| gradlePluginPortal() | |
| google() | |
| } | |
| } | |
| dependencyResolutionManagement { | |
| repositories { | |
| google { | |
| content { | |
| includeGroupByRegex("com\\.android.*") | |
| includeGroupByRegex("com\\.google.*") | |
| includeGroupByRegex("androidx.*") | |
| } | |
| } | |
| mavenCentral() | |
| } | |
| versionCatalogs { | |
| create("libs") { | |
| from(files("../gradle/libs.versions.toml")) | |
| } | |
| } | |
| } | |
| rootProject.name = "build-logic" | |
| include(":convention") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment