Skip to content

Instantly share code, notes, and snippets.

@megaacheyounes
Created September 18, 2023 05:23
Show Gist options
  • Save megaacheyounes/48e7e4cc7b8dcacbd38855a732acc506 to your computer and use it in GitHub Desktop.
Save megaacheyounes/48e7e4cc7b8dcacbd38855a732acc506 to your computer and use it in GitHub Desktop.
optimized settings.gradle example
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