Skip to content

Commit

Permalink
build: make variant more identifiable
Browse files Browse the repository at this point in the history
Release variant will use the "ReVanced Manager" app name, Debug will use "ReVanced Manager Debug"
  • Loading branch information
validcube committed Aug 15, 2023
1 parent 63175cd commit 43f98ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ android {

buildTypes {
release {
shrinkResources false
minifyEnabled false
resValue "string", "app_name", "ReVanced Manager"
signingConfig signingConfigs.debug
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
Expand All @@ -62,8 +61,9 @@ android {
debug {
shrinkResources false
minifyEnabled false
signingConfig signingConfigs.debug
resValue "string", "app_name", "ReVanced Manager Debug"
applicationIdSuffix ".debug"
signingConfig signingConfigs.debug
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64'
}
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
<application
android:label="ReVanced Manager"
android:label="@string/app_name"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
android:largeHeap="true"
Expand Down

0 comments on commit 43f98ce

Please sign in to comment.