Skip to content

Commit

Permalink
Change App ID to FoxPipe
Browse files Browse the repository at this point in the history
  • Loading branch information
ShareASmile committed Dec 10, 2023
1 parent 1d1cdcc commit 921bf8e
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ android {
buildToolsVersion '30.0.3'

defaultConfig {
applicationId "org.schabi.newpipe"
resValue "string", "app_name", "NewPipe"
applicationId "com.soulwin.foxpipe"
resValue "string", "app_name", "FoxPipe"
minSdkVersion 19
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 29
versionCode 979
versionName "0.19.9.5"
versionCode 955
versionName "0.19.8.2"

multiDexEnabled true

Expand All @@ -38,11 +38,11 @@ android {
if (normalizedWorkingBranch.isEmpty() || workingBranch == "master" || workingBranch == "dev") {
// default values when branch name could not be determined or is master or dev
applicationIdSuffix ".debug"
resValue "string", "app_name", "NewPipe debug"
resValue "string", "app_name", "FoxPipe debug"
} else {
applicationIdSuffix ".debug." + normalizedWorkingBranch
resValue "string", "app_name", "NewPipe " + workingBranch
archivesBaseName = 'NewPipe_' + normalizedWorkingBranch
archivesBaseName = 'FoxPipe_' + normalizedWorkingBranch
}
}

Expand All @@ -54,8 +54,6 @@ android {
shrinkResources true // could be disabled to fix F-Droid's reproducible build
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
archivesBaseName = 'app'
applicationIdSuffix ".Zing"
resValue "string", "app_name", "NewPipe " + "Zing"
}
}

Expand Down

0 comments on commit 921bf8e

Please sign in to comment.