mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-02-10 02:56:48 +01:00
This commit improves the build files by using Gradle version catalogs and modernizes the Android build files. Additionally dependencies have been updated and some source files refactored.
27 lines
439 B
Plaintext
27 lines
439 B
Plaintext
rootProject.name = "revanced-integrations"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
buildCache {
|
|
local {
|
|
isEnabled = "CI" !in System.getenv()
|
|
}
|
|
}
|
|
|
|
include(":app")
|
|
include(":stub")
|