mirror of
https://github.com/fankes/MIUINativeNotifyIcon.git
synced 2025-09-06 02:35:32 +08:00
19 lines
433 B
Groovy
19 lines
433 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' }
|
|
mavenCentral()
|
|
}
|
|
}
|
|
rootProject.name = "MIUINativeNotifyIcon"
|
|
include ':app'
|