Fix: use relative paths to temporal dependencies

This commit is contained in:
oSumAtrIX 2022-04-09 05:00:24 +02:00 committed by GitHub
parent 919b34e174
commit 1b6757ff40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -10,11 +10,12 @@ repositories {
}
dependencies {
implementation(files("P:\\Andere Dateien\\STUFF\\Coding\\Java\\revanced\\revanced-patcher\\build\\libs\\revanced-patcher-1.0.0-dev.8.jar"))
implementation(files("P:\\Andere Dateien\\STUFF\\Coding\\Java\\revanced\\revanced-patches\\build\\libs\\revanced-patches-1.0.0-dev.4.jar"))
// Temporal file dependency
implementation(files("revanced-patches-1.0.0-dev.4.jar"))
implementation(files("revanced-patcher-1.0.0-dev.8.jar"))
implementation("com.google.code.gson:gson:2.9.0")
implementation("com.github.lanchon.dexpatcher:multidexlib2:2.3.4.r2")
implementation("org.smali:smali:2.3.4")
implementation "org.jetbrains.kotlin:kotlin-stdlib"
}
}