fix: remove dependency to fork of Apktool

This commit is contained in:
oSumAtrIX
2022-05-26 03:51:25 +02:00
parent 8615798711
commit 11abc67d9a

View File

@@ -8,17 +8,17 @@ group = "app.revanced"
repositories { repositories {
mavenCentral() mavenCentral()
listOf("multidexlib2", "Apktool").forEach { repo -> maven {
maven { url = uri("https://maven.pkg.github.com/revanced/multidexlib2")
url = uri("https://maven.pkg.github.com/revanced/$repo") credentials {
credentials { // DO NOT set these variables in the project's gradle.properties.
// DO NOT set these variables in the project's gradle.properties. // Instead, you should set them in:
// Instead, you should set them in: // Windows: %homepath%\.gradle\gradle.properties
// Windows: %homepath%\.gradle\gradle.properties // Linux: ~/.gradle/gradle.properties
// Linux: ~/.gradle/gradle.properties username =
username = project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR") // DO NOT CHANGE! project.findProperty("gpr.user") as String? ?: System.getenv("GITHUB_ACTOR") // DO NOT CHANGE!
password = project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN") // DO NOT CHANGE! password =
} project.findProperty("gpr.key") as String? ?: System.getenv("GITHUB_TOKEN") // DO NOT CHANGE!
} }
} }
} }
@@ -27,7 +27,7 @@ dependencies {
implementation(kotlin("stdlib")) implementation(kotlin("stdlib"))
api("xpp3:xpp3:1.1.4c") api("xpp3:xpp3:1.1.4c")
api("org.apktool:apktool-lib:2.6.2-SNAPSHOT") api("org.apktool:apktool-lib:2.6.1")
api("app.revanced:multidexlib2:2.5.2.r2") api("app.revanced:multidexlib2:2.5.2.r2")
api("org.smali:smali:2.5.2") api("org.smali:smali:2.5.2")