revanced-manager/settings.gradle.kts

21 lines
448 B
Plaintext
Raw Normal View History

2023-01-28 00:00:52 +01:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://jitpack.io")
2023-10-15 14:03:53 +02:00
mavenLocal()
2023-01-28 00:00:52 +01:00
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
2023-10-15 14:03:53 +02:00
mavenLocal()
2023-01-28 00:00:52 +01:00
}
}
rootProject.name = "ReVanced Manager"
include(":app")