mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2024-11-10 01:02:22 +01:00
f1d7217495
This commit allows reading and writing arbitrary files in an APK file. Additionally it allows deleting files from APK files. A `RawResourcePatch` class has been added which has access to `ResourceContext` but ReVanced Patcher will not decode APK resources. A regular `ResourcePatch` can read and write arbitrary files from an APK file, unless they are decoded to `PatcherConfig.apkFiles`. On attempt to get a file from `PatcherConfig.apkFiles` if the second parameter is true, it will read and write the raw resource file from the original APK to `PatcherConfig.apkFiles` if it does not exist. With this commit, many APIs have been deprecated as well, such as `DomFileEditor` and instead a `Document` has been added.
90 lines
2.2 KiB
Text
90 lines
2.2 KiB
Text
plugins {
|
|
alias(libs.plugins.kotlin)
|
|
alias(libs.plugins.binary.compatibility.validator)
|
|
`maven-publish`
|
|
signing
|
|
java
|
|
}
|
|
|
|
group = "app.revanced"
|
|
|
|
tasks {
|
|
processResources {
|
|
expand("projectVersion" to project.version)
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events("PASSED", "SKIPPED", "FAILED")
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven { url = uri("https://jitpack.io") }
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
implementation(libs.xpp3)
|
|
implementation(libs.smali)
|
|
implementation(libs.multidexlib2)
|
|
implementation(libs.apktool.lib)
|
|
implementation(libs.kotlin.reflect)
|
|
|
|
// TODO: Convert project to KMP.
|
|
compileOnly(libs.android) {
|
|
// Exclude, otherwise the org.w3c.dom API breaks.
|
|
exclude(group = "xerces", module = "xmlParserAPIs")
|
|
}
|
|
|
|
testImplementation(libs.kotlin.test)
|
|
}
|
|
|
|
java {
|
|
withJavadocJar()
|
|
withSourcesJar()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(11)
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("revanced-patcher-publication") {
|
|
from(components["java"])
|
|
|
|
version = project.version.toString()
|
|
|
|
pom {
|
|
name = "ReVanced Patcher"
|
|
description = "Patcher used by ReVanced."
|
|
url = "https://revanced.app"
|
|
|
|
licenses {
|
|
license {
|
|
name = "GNU General Public License v3.0"
|
|
url = "https://www.gnu.org/licenses/gpl-3.0.en.html"
|
|
}
|
|
}
|
|
developers {
|
|
developer {
|
|
id = "ReVanced"
|
|
name = "ReVanced"
|
|
email = "contact@revanced.app"
|
|
}
|
|
}
|
|
scm {
|
|
connection = "scm:git:git://github.com/revanced/revanced-patcher.git"
|
|
developerConnection = "scm:git:git@github.com:revanced/revanced-patcher.git"
|
|
url = "https://github.com/revanced/revanced-patcher"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|