From b37d6635ffb06cdaeb439973abeb45e47395953a Mon Sep 17 00:00:00 2001 From: rhunk <101876869+rhunk@users.noreply.github.com> Date: Mon, 22 Jul 2024 14:15:26 +0200 Subject: [PATCH] chore(build): disable profile installer for development environment Signed-off-by: rhunk <101876869+rhunk@users.noreply.github.com> --- app/build.gradle.kts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 16064798..cbe22887 100644 --- 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") + } +}