Skip to content

Commit

Permalink
fix: gradle sync dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Apr 9, 2022
1 parent b1372c0 commit 407efdc
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,19 @@ version '1.0-SNAPSHOT'

repositories {
mavenCentral()
mavenLocal()
maven {
url = uri("https://maven.pkg.github.com/ReVancedTeam/multidexlib2")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}

dependencies {
// Temporal file dependency
implementation(files("revanced-patches-1.0.0-dev.4.jar"))
implementation(files("revanced-patcher-1.0.0-dev.8.jar"))

implementation("app.revanced:revanced-patcher:1.0.0-dev.8")
implementation("app.revanced:revanced-patches:1.0.0-dev.4")
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"
}
implementation("org.jetbrains.kotlin:kotlin-stdlib")
}

0 comments on commit 407efdc

Please sign in to comment.