Skip to content

Commit 407efdc

Browse files
committed
fix: gradle sync dependencies
1 parent b1372c0 commit 407efdc

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

build.gradle

+12-8
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,19 @@ version '1.0-SNAPSHOT'
77

88
repositories {
99
mavenCentral()
10+
mavenLocal()
11+
maven {
12+
url = uri("https://maven.pkg.github.com/ReVancedTeam/multidexlib2")
13+
credentials {
14+
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
15+
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
16+
}
17+
}
1018
}
1119

1220
dependencies {
13-
// Temporal file dependency
14-
implementation(files("revanced-patches-1.0.0-dev.4.jar"))
15-
implementation(files("revanced-patcher-1.0.0-dev.8.jar"))
16-
21+
implementation("app.revanced:revanced-patcher:1.0.0-dev.8")
22+
implementation("app.revanced:revanced-patches:1.0.0-dev.4")
1723
implementation("com.google.code.gson:gson:2.9.0")
18-
implementation("com.github.lanchon.dexpatcher:multidexlib2:2.3.4.r2")
19-
implementation("org.smali:smali:2.3.4")
20-
implementation "org.jetbrains.kotlin:kotlin-stdlib"
21-
}
24+
implementation("org.jetbrains.kotlin:kotlin-stdlib")
25+
}

0 commit comments

Comments
 (0)