From 0779a496eb2fedfd368a716945bc323dfb6ae8ab Mon Sep 17 00:00:00 2001 From: daplugg23 Date: Thu, 5 Feb 2026 20:25:04 -0600 Subject: [PATCH] build: fix CLI build compatibility with Gradle 9.x/AGP 9.0 Add android.disallowKotlinSourceSets=false and android.sourceset.disallowProvider=false to gradle.properties to resolve build failures caused by stricter checks in newer Android Gradle Plugin versions. This allows the project to build successfully from CLI. --- gradle.properties | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gradle.properties b/gradle.properties index 78756ceb..c44e3abd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,3 +13,5 @@ APP_VERSION_CODE=261 debug_build_hash=18fe2a814d0e2eb5 psIntegrityPinnedSha256= EXPECTED_CERT_SHA256=97fc5c4dff7e33c159528eb9e53f86c356d430cd63d177f40c22b577ac829dee +android.disallowKotlinSourceSets=false +android.sourceset.disallowProvider=false