Created
September 18, 2023 05:23
-
-
Save megaacheyounes/48e7e4cc7b8dcacbd38855a732acc506 to your computer and use it in GitHub Desktop.
optimized settings.gradle example
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
dependencyResolutionManagement { | |
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) | |
repositories { | |
google() { | |
content { | |
//check google repo only for google dependencies | |
includeGroupByRegex "com\\.google.*" | |
includeGroupByRegex "com\\.android.*" | |
includeGroupByRegex "androidx.*" | |
} | |
} | |
mavenCentral() | |
jcenter() // Warning: this repository is going to shut down soon | |
maven { | |
url 'https://jitpack.io' | |
content { | |
includeGroupByRegex "com\\.github.*" | |
} | |
} | |
maven { | |
url 'https://developer.huawei.com/repo/' | |
//check huawei repo only for huawei dependencies | |
content { | |
includeGroupByRegex "com\\.huawei.*" | |
} | |
} | |
} | |
} | |
rootProject.name = "Demo" | |
include ':app' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment