Skip to content

Commit

Permalink
Fix: use relative paths to temporal dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX authored Apr 9, 2022
1 parent 919b34e commit 1b6757f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}

0 comments on commit 1b6757f

Please sign in to comment.