We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a1d81f commit 75c9e95Copy full SHA for 75c9e95
1 file changed
app/build.gradle
@@ -54,6 +54,11 @@ android {
54
// debug build. This seems to be a Gradle bug, therefore
55
// TODO: update Gradle version
56
release {
57
+ if (System.properties.containsKey('packageSuffix')) {
58
+ applicationIdSuffix System.getProperty('packageSuffix')
59
+ resValue "string", "app_name", "NewPipe " + System.getProperty('packageSuffix')
60
+ archivesBaseName = 'NewPipe_' + System.getProperty('packageSuffix')
61
+ }
62
minifyEnabled true
63
shrinkResources false // disabled to fix F-Droid's reproducible build
64
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
0 commit comments