Skip to content

Commit 5b6426c

Browse files
authored
fix: Change duplicated app suffix and allow profile variant compilation
1 parent 235489d commit 5b6426c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

android/app/build.gradle.kts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ plugins {
88
android {
99
namespace = "app.revanced.manager.flutter"
1010
compileSdk = 35
11-
ndkVersion = "27.0.12077973"
1211

1312
compileOptions {
1413
isCoreLibraryDesugaringEnabled = true
@@ -64,11 +63,11 @@ android {
6463

6564
resValue("string", "app_name", "ReVanced Manager")
6665
} else {
67-
applicationIdSuffix = ".debug"
66+
applicationIdSuffix = ".development"
6867

6968
signingConfig = signingConfigs["debug"]
7069

71-
resValue("string", "app_name", "ReVanced Manager (Debug signed)")
70+
resValue("string", "app_name", "ReVanced Manager (Development)")
7271
}
7372
}
7473

@@ -77,6 +76,13 @@ android {
7776

7877
resValue("string", "app_name", "ReVanced Manager (Debug)")
7978
}
79+
80+
profile {
81+
applicationIdSuffix = ".profile"
82+
83+
resValue("string", "app_name", "ReVanced Manager (Profile)")
84+
applicationIdSuffix = ".debug"
85+
}
8086
}
8187

8288
packaging {

0 commit comments

Comments
 (0)