mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-01 16:55:18 +08:00
20 lines
532 B
Groovy
20 lines
532 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
maven { url "https://api.xposed.info/" }
|
|
maven { url "https://www.jitpack.io" }
|
|
maven { url "https://s01.oss.sonatype.org/content/repositories/releases" }
|
|
mavenCentral()
|
|
}
|
|
}
|
|
rootProject.name = "AppErrorsTracking"
|
|
include ':app'
|
|
include ':demo-app' |