revanced-integrations/settings.gradle.kts

27 lines
439 B
Plaintext
Raw Normal View History

2023-11-22 00:26:37 +01:00
rootProject.name = "revanced-integrations"
pluginManagement {
repositories {
google()
mavenCentral()
}
}
@Suppress("UnstableApiUsage")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
2023-11-22 00:26:37 +01:00
buildCache {
local {
isEnabled = "CI" !in System.getenv()
}
}
2023-11-22 00:26:37 +01:00
include(":app")
include(":stub")