mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-02 17:55:26 +01:00
68 lines
2.1 KiB
Plaintext
68 lines
2.1 KiB
Plaintext
plugins {
|
|
kotlin("jvm") version "1.7.0"
|
|
}
|
|
|
|
group = "app.revanced"
|
|
|
|
val githubUsername: String = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
|
|
val githubPassword: String = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven {
|
|
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
|
|
credentials {
|
|
username = githubUsername
|
|
password = githubPassword
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("app.revanced:revanced-patcher:4.1.4")
|
|
implementation("app.revanced:multidexlib2:2.5.2.r2")
|
|
|
|
// Required for meta
|
|
implementation("com.google.code.gson:gson:2.9.1")
|
|
}
|
|
|
|
tasks {
|
|
register<DefaultTask>("generateBundle") {
|
|
description = "Generate dex files from build and bundle them in the jar file"
|
|
dependsOn(build)
|
|
|
|
doLast {
|
|
val androidHome = System.getenv("ANDROID_HOME") ?: throw GradleException("ANDROID_HOME not found")
|
|
val d8 = "${androidHome}/build-tools/32.0.0/d8"
|
|
val input = configurations.archives.get().allArtifacts.files.files.first().absolutePath
|
|
val work = File("${buildDir}/libs")
|
|
|
|
exec {
|
|
workingDir = work
|
|
commandLine = listOf(d8, input)
|
|
}
|
|
|
|
exec {
|
|
workingDir = work
|
|
commandLine = listOf("zip", "-u", input, "classes.dex")
|
|
}
|
|
}
|
|
}
|
|
register<JavaExec>("generateMeta") {
|
|
description = "Generate metadata for this bundle"
|
|
dependsOn(build)
|
|
|
|
classpath = sourceSets["main"].runtimeClasspath
|
|
mainClass.set("app.revanced.meta.Meta")
|
|
}
|
|
// 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"
|
|
dependsOn(named("generateBundle"), named("generateMeta"))
|
|
}
|
|
}
|