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") } }