This commit is a squash of multiple commits, authored by the individuals referenced below. To see the exact commits by each author, see the unsquashed tree at https://github.com/ReVanced/revanced-patches/pull/6571 or with commit 03940665d27a42ed08992757dfe4534bd8243356. Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de> Co-authored-by: hoodles <207470673+hoo-dles@users.noreply.github.com> Co-authored-by: ILoveOpenSourceApplications <117499019+iloveopensourceapplications@users.noreply.github.com> Co-authored-by: LisoUseInAIKyrios <118716522+lisouseinaikyrios@users.noreply.github.com> Co-authored-by: inotia00 <108592928+inotia00@users.noreply.github.com> Co-authored-by: OxrxL <108184954+oxrxl@users.noreply.github.com>
36 lines
857 B
Kotlin
36 lines
857 B
Kotlin
rootProject.name = "revanced-patches"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
gradlePluginPortal()
|
|
google()
|
|
maven {
|
|
name = "githubPackages"
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patches")
|
|
credentials(PasswordCredentials::class)
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("app.revanced.patches") version "1.0.0-dev.9"
|
|
}
|
|
|
|
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")
|