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()
mavenLocal()
google()
maven {
url = uri("https://maven.pkg.github.com/revanced/revanced-patcher")
credentials {
username = githubUsername
password = githubPassword
maven { url = uri("https://jitpack.io") }
listOf("revanced-patcher", "jadb").forEach { repo ->
maven {
url = uri("https://maven.pkg.github.com/revanced/$repo")
credentials {
username = githubUsername
password = githubPassword
}
}
}
maven { url = uri("https://jitpack.io") }
}
dependencies {