Drop deprecated non-working archivesBaseName property

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta 2025-10-16 22:27:56 +08:00
parent 061ce870ac
commit 1bef2fdc25

View File

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