Files
revanced-patches/settings.gradle.kts
2026-01-11 16:59:48 +01:00

30 lines
746 B
Plaintext

rootProject.name = "revanced-patches"
pluginManagement {
repositories {
gradlePluginPortal()
google()
maven {
name = "githubPackages"
url = uri("https://maven.pkg.github.com/revanced/registry")
credentials(PasswordCredentials::class)
}
}
}
plugins {
id("app.revanced.patches") version "1.0.0-dev.7"
}
settings {
extensions {
defaultNamespace = "app.revanced.extension"
// Must resolve to an absolute path (not relative),
// otherwise the extensions in subfolders will fail to find the proguard config.
proguardFiles(rootProject.projectDir.resolve("extensions/proguard-rules.pro").toString())
}
}
include(":patches:stub")