build: make sure to add use all necessary repositories

This commit is contained in:
oSumAtrIX 2023-08-23 03:56:31 +02:00
parent 47a20afd2d
commit a7290353bf
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 8 additions and 6 deletions

View File

@ -12,14 +12,16 @@ repositories {
mavenCentral() mavenCentral()
mavenLocal() mavenLocal()
google() google()
maven { maven { url = uri("https://jitpack.io") }
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher") listOf("revanced-patcher", "jadb").forEach { repo ->
credentials { maven {
username = githubUsername url = uri("https://maven.pkg.github.com/revanced/$repo")
password = githubPassword credentials {
username = githubUsername
password = githubPassword
}
} }
} }
maven { url = uri("https://jitpack.io") }
} }
dependencies { dependencies {