From 1bef2fdc253c5d7a6574258a06f6da071ed4f5ad Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Thu, 16 Oct 2025 22:27:56 +0800 Subject: [PATCH] Drop deprecated non-working archivesBaseName property Signed-off-by: Aayush Gupta --- app/build.gradle.kts | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 8dd1594f2..e4c186e50 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -60,7 +60,6 @@ android { } else { applicationIdSuffix = ".debug.$normalizedWorkingBranch" resValue("string", "app_name", "NewPipe $workingBranch") - setProperty("archivesBaseName", "NewPipe_$normalizedWorkingBranch") } } @@ -68,12 +67,10 @@ android { System.getProperty("packageSuffix")?.let { suffix -> applicationIdSuffix = suffix resValue("string", "app_name", "NewPipe $suffix") - setProperty("archivesBaseName", "NewPipe_" + System.getProperty("packageSuffix")) } isMinifyEnabled = true isShrinkResources = false // disabled to fix F-Droid"s reproducible build proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro") - setProperty("archivesBaseName", "app") } }