From dd7f495e26bb3da13cd3c7715df939d093524d42 Mon Sep 17 00:00:00 2001 From: Rahul Patel Date: Wed, 24 Dec 2025 12:58:42 +0530 Subject: [PATCH] update repository content filter ag-coreservice has many transitive dependencies, for example: - com.huawei.hms:ag-autoparcelable - com.huawei.android.hms:security-base - com.huawei.android.hms:security-ssl - com.huawei.hms:installersdk Setting a restrictive content filter results in gradle failure. --- settings.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index b490e3305..9b265199c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -25,7 +25,8 @@ dependencyResolutionManagement { // Only included in huawei variants maven("https://developer.huawei.com/repo/") { content { - includeModule("com.huawei.hms", "ag-coreservice") + includeGroup("com.huawei.hms") + includeGroup("com.huawei.android.hms") } } }