From a7290353bf3def005c06e7c8997f17cf148b4d6c Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 23 Aug 2023 03:56:31 +0200 Subject: [PATCH] build: make sure to add use all necessary repositories --- build.gradle.kts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5510647..eb96092 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 {