commit b37d6635ffb06cdaeb439973abeb45e47395953a
parent b2bc23d0e0d519905dfed97fc486eab984a91fd6
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date:   Mon, 22 Jul 2024 14:15:26 +0200

chore(build): disable profile installer for development environment

Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com>

Diffstat:
Mapp/build.gradle.kts | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/app/build.gradle.kts b/app/build.gradle.kts @@ -180,4 +180,9 @@ afterEvaluate { } } } -}- \ No newline at end of file +} +properties["debug_flavor"]?.let { + configurations.all { + exclude(group = "androidx.profileinstaller", "profileinstaller") + } +}