41 lines
985 B
Kotlin
41 lines
985 B
Kotlin
group = "app.revanced"
|
|
|
|
patches {
|
|
about {
|
|
name = "ReVanced Patches"
|
|
description = "Patches for ReVanced"
|
|
source = "git@github.com:revanced/revanced-patches.git"
|
|
author = "ReVanced"
|
|
contact = "contact@revanced.app"
|
|
website = "https://revanced.app"
|
|
license = "GNU General Public License v3.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Required due to smali, or build fails. Can be removed once smali is bumped.
|
|
implementation(libs.guava)
|
|
|
|
implementation(libs.apksig)
|
|
|
|
// Android API stubs defined here.
|
|
compileOnly(project(":patches:stub"))
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
freeCompilerArgs = listOf("-Xcontext-receivers")
|
|
}
|
|
}
|
|
|
|
publishing {
|
|
repositories {
|
|
maven {
|
|
name = "githubPackages"
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patches")
|
|
credentials(PasswordCredentials::class)
|
|
}
|
|
}
|
|
}
|
|
|
|
apply(from = "strings-processing.gradle.kts")
|