revanced-patches/build.gradle.kts

82 lines
2.6 KiB
Plaintext
Raw Normal View History

2022-03-21 16:19:51 +01:00
plugins {
kotlin("jvm") version "1.8.20"
2022-03-21 16:19:51 +01:00
}
group = "app.revanced"
2022-03-21 16:19:51 +01:00
repositories {
mavenCentral()
mavenLocal()
google()
2022-03-21 16:19:51 +01:00
maven {
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
2022-03-21 16:19:51 +01:00
credentials {
username = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")
2022-03-21 16:19:51 +01:00
}
}
// Required for FlexVer-Java
maven {
url = uri("https://repo.sleeping.town")
content {
includeGroup("com.unascribed")
}
}
2022-03-21 16:19:51 +01:00
}
dependencies {
2023-08-27 22:18:15 +02:00
implementation("app.revanced:revanced-patcher:14.2.1")
implementation("com.android.tools.smali:smali:3.0.3")
// Required because build fails without it.
// TODO: Find a way to remove this dependency.
implementation("com.google.guava:guava:32.1.2-jre")
// Used in JsonGenerator.
implementation("com.google.code.gson:gson:2.10.1")
// A dependency to the Android library unfortunately fails the build,
// which is why this is required for the patch change-oauth-client-id.
compileOnly(project("dummy"))
}
2023-05-08 01:15:26 +02:00
kotlin {
jvmToolchain(11)
}
tasks {
register<DefaultTask>("generateBundle") {
description = "Generate dex files from build and bundle them in the jar file"
dependsOn(build)
2022-06-16 12:55:13 +02:00
doLast {
val androidHome = System.getenv("ANDROID_HOME") ?: throw GradleException("ANDROID_HOME not found")
2022-12-05 23:03:48 +01:00
val d8 = "${androidHome}/build-tools/33.0.1/d8"
2022-06-16 13:27:45 +02:00
val input = configurations.archives.get().allArtifacts.files.files.first().absolutePath
val work = layout.buildDirectory.dir("libs").get().asFile
2022-06-16 12:55:13 +02:00
exec {
workingDir = work
commandLine = listOf(d8, input)
}
exec {
workingDir = work
commandLine = listOf("zip", "-u", input, "classes.dex")
2022-06-16 12:55:13 +02:00
}
}
}
2022-08-28 21:39:13 +02:00
register<JavaExec>("generateMeta") {
description = "Generate metadata for this bundle"
dependsOn(build)
classpath = sourceSets["main"].runtimeClasspath
mainClass.set("app.revanced.meta.PatchesFileGenerator")
}
// Dummy task to fix the Gradle semantic-release plugin.
// Remove this if you forked it to support building only.
// Tracking issue: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435
register<DefaultTask>("publish") {
group = "publish"
description = "Dummy task"
2022-08-28 21:39:13 +02:00
dependsOn(named("generateBundle"), named("generateMeta"))
}
2022-06-16 13:33:50 +02:00
}