Implement priority filtering, rename package, preset URL, update remotes
Some checks failed
Build / Check (push) Has been cancelled

This commit is contained in:
kdusek
2025-11-28 20:06:33 +01:00
parent 547d9fd943
commit afcf93087c
42 changed files with 194 additions and 170 deletions

View File

@@ -9,10 +9,10 @@ plugins {
}
android {
namespace = "com.github.gotify"
namespace = "com.github.gotifycustom"
compileSdk = 36
defaultConfig {
applicationId = "com.github.gotify"
applicationId = "com.github.gotifycustom"
minSdk = 23
targetSdk = 36
versionCode = 34
@@ -20,7 +20,7 @@ android {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
signingConfig = signingConfigs.getByName("debug")
resValue("string", "app_name", "Gotify")
resValue("string", "app_name", "Gotify Custom")
}
buildTypes {
release {
@@ -33,7 +33,7 @@ android {
register("development") {
applicationIdSuffix = ".dev"
isDebuggable = true
resValue("string", "app_name", "Gotify DEV")
resValue("string", "app_name", "Gotify Custom DEV")
}
}
buildFeatures {