feat: Add local Android installer (#25)

This commit is contained in:
oSumAtrIX
2024-04-07 18:30:43 +02:00
parent 8d0e4b2470
commit 43d655aea5
45 changed files with 1976 additions and 631 deletions

View File

@@ -1,7 +1,15 @@
// TODO: Figure out why this causes problems.
rootProject.name = "revanced-library"
buildCache {
local {
isEnabled = !System.getenv().containsKey("CI")
isEnabled = "CI" !in System.getenv()
}
}
pluginManagement {
repositories {
google()
mavenCentral()
}
}