mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-04-29 21:44:26 +02:00
fix: Change duplicated app suffix and allow profile variant compilation
This commit is contained in:
parent
235489dcdf
commit
5b6426c453
@ -8,7 +8,6 @@ plugins {
|
|||||||
android {
|
android {
|
||||||
namespace = "app.revanced.manager.flutter"
|
namespace = "app.revanced.manager.flutter"
|
||||||
compileSdk = 35
|
compileSdk = 35
|
||||||
ndkVersion = "27.0.12077973"
|
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
isCoreLibraryDesugaringEnabled = true
|
isCoreLibraryDesugaringEnabled = true
|
||||||
@ -64,11 +63,11 @@ android {
|
|||||||
|
|
||||||
resValue("string", "app_name", "ReVanced Manager")
|
resValue("string", "app_name", "ReVanced Manager")
|
||||||
} else {
|
} else {
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".development"
|
||||||
|
|
||||||
signingConfig = signingConfigs["debug"]
|
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)")
|
resValue("string", "app_name", "ReVanced Manager (Debug)")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
profile {
|
||||||
|
applicationIdSuffix = ".profile"
|
||||||
|
|
||||||
|
resValue("string", "app_name", "ReVanced Manager (Profile)")
|
||||||
|
applicationIdSuffix = ".debug"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
packaging {
|
packaging {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user