From c7733c3773f5f69cf3732dbbc094b3d0e23f6bb1 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Thu, 24 Nov 2022 06:50:50 -0500 Subject: [PATCH] build: filter jitpack to only com.github.ibotpeaches.* (#2953) --- build.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d7b24581..4d3d6b2d 100644 --- a/build.gradle +++ b/build.gradle @@ -85,7 +85,12 @@ allprojects { // Obtain baksmali/smali from source builds - https://github.com/iBotPeaches/smali // Remove when official smali releases come out again. - maven { url 'https://jitpack.io' } + maven { + url 'https://jitpack.io' + content { + includeGroup('com.github.iBotPeaches.smali') + } + } } }