From ae9a3278d91a163d849407445d1d4af589a56162 Mon Sep 17 00:00:00 2001 From: acclorite Date: Wed, 31 Jul 2024 21:51:26 +0300 Subject: [PATCH] Changed FetchRemoteFunding to false. (About Libraries) --- app/build.gradle.kts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 9736f882..894384c5 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -74,14 +74,17 @@ android { aboutLibraries { registerAndroidTasks = true outputFileName = "aboutlibraries.json" + + gitHubApiToken = properties["github-key"] as? String offlineMode = false fetchRemoteLicense = true - fetchRemoteFunding = true + fetchRemoteFunding = false includePlatform = true + duplicationMode = com.mikepenz.aboutlibraries.plugin.DuplicateMode.MERGE duplicationRule = com.mikepenz.aboutlibraries.plugin.DuplicateRule.SIMPLE prettyPrint = false - filterVariants = arrayOf("debug", "release", "release-debug") + excludeFields = arrayOf("generated") }