From 12c6c73de06dfeca0caf60466ac79e6dfedaabda Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 16 Aug 2023 16:53:38 +0200 Subject: [PATCH] build: add `mavenLocal` to repositories --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 12a864f..01f5595 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,6 +11,7 @@ val githubPassword: String = project.findProperty("gpr.key") as? String ?: Syste repositories { mavenCentral() google() + mavenLocal() listOf("multidexlib2", "apktool").forEach { repo -> maven { url = uri("https://maven.pkg.github.com/revanced/$repo")