mirror of
https://github.com/QM4RS/FridaBox.git
synced 2026-09-20 08:02:16 +02:00
38 lines
1.3 KiB
Groovy
38 lines
1.3 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
maven { url "https://www.jitpack.io" }
|
|
maven { url 'https://maven.aliyun.com/repository/releases' }
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
maven { url "https://www.jitpack.io" }
|
|
maven { url 'https://maven.aliyun.com/repository/releases' }
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/central' }
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "vspace-fully-fixed"
|
|
|
|
include ':app'
|
|
|