feat: Add app icon generation, update profile navigation, and refine UI styling for profile action buttons and notification tabs.

This commit is contained in:
pradeepkumar
2026-03-14 17:25:33 +05:30
parent 7b9c19ec67
commit 8411015075
44 changed files with 276 additions and 279 deletions

View File

@@ -59,18 +59,18 @@ android {
create("local") {
dimension = "flavor-type"
applicationIdSuffix = ".local"
resValue("string", "app_name", "RE-QuestN Local")
resValue("string", "app_name", "RE-Quest Local")
}
create("demo") {
dimension = "flavor-type"
applicationIdSuffix = ".demo"
resValue("string", "app_name", "RE-QuestN Demo")
resValue("string", "app_name", "RE-Quest Demo")
signingConfig = signingConfigs.getByName("demoRelease")
}
create("dev") {
dimension = "flavor-type"
applicationIdSuffix = ".dev"
resValue("string", "app_name", "RE-QuestN Dev")
resValue("string", "app_name", "RE-Quest Dev")
signingConfig = signingConfigs.getByName("devRelease")
}
}