refactor: bump multidexlib2 to 2.5.2.r2

BREAKING CHANGE: Method signature of Patcher#save() was changed to comply with the changes of multidexlib2.
This commit is contained in:
Lucaskyy
2022-04-09 20:33:22 +02:00
committed by oSumAtrIX
parent db10ab03be
commit a6c6b4979a
2 changed files with 9 additions and 5 deletions

View File

@@ -12,6 +12,10 @@ repositories {
maven {
url = uri("https://maven.pkg.github.com/ReVancedTeam/multidexlib2")
credentials {
// DO NOT set these variables in the project's gradle.properties.
// Instead, you should set them in:
// Windows: %homepath%\.gradle\gradle.properties
// Linux: ~/.gradle/gradle.properties
username = 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!
}
@@ -21,7 +25,7 @@ repositories {
dependencies {
implementation(kotlin("stdlib"))
implementation("app.revanced:multidexlib2:2.5.2")
implementation("app.revanced:multidexlib2:2.5.2.r2")
@Suppress("GradlePackageUpdate")
implementation("org.smali:smali:2.5.2")