From 5b6426c4531d04ed15ec426321b05087818ef30c Mon Sep 17 00:00:00 2001 From: Pun Butrach Date: Sat, 15 Feb 2025 13:54:57 +0700 Subject: [PATCH] fix: Change duplicated app suffix and allow profile variant compilation --- android/app/build.gradle.kts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 09ff84d2..50fe0be5 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -8,7 +8,6 @@ plugins { android { namespace = "app.revanced.manager.flutter" compileSdk = 35 - ndkVersion = "27.0.12077973" compileOptions { isCoreLibraryDesugaringEnabled = true @@ -64,11 +63,11 @@ android { resValue("string", "app_name", "ReVanced Manager") } else { - applicationIdSuffix = ".debug" + applicationIdSuffix = ".development" signingConfig = signingConfigs["debug"] - resValue("string", "app_name", "ReVanced Manager (Debug signed)") + resValue("string", "app_name", "ReVanced Manager (Development)") } } @@ -77,6 +76,13 @@ android { resValue("string", "app_name", "ReVanced Manager (Debug)") } + + profile { + applicationIdSuffix = ".profile" + + resValue("string", "app_name", "ReVanced Manager (Profile)") + applicationIdSuffix = ".debug" + } } packaging {