From 5b8c658527e4fe11029fea010991d9d5c4dbc462 Mon Sep 17 00:00:00 2001 From: Manish Murmu Date: Mon, 20 Oct 2025 22:57:59 +0530 Subject: [PATCH] Fix #26: Remove duplicate libraries from About screen --- 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 046fc7c..6df6dd6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -142,7 +142,12 @@ dependencies { } aboutLibraries { - android.registerAndroidTasks = true + library { + // Enable the duplication mode, allows to merge, or link dependencies which relate + duplicationMode = com.mikepenz.aboutlibraries.plugin.DuplicateMode.MERGE + // Configure the duplication rule, to match "duplicates" with + duplicationRule = com.mikepenz.aboutlibraries.plugin.DuplicateRule.SIMPLE + } } protobuf {