Release: web UX overhaul + Android native port + server polish #59

Merged
bvandeusen merged 298 commits from dev into main 2026-06-01 16:11:21 -04:00
Showing only changes of commit 627810aee6 - Show all commits
+12 -10
View File
@@ -50,11 +50,12 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"), getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro", "proguard-rules.pro",
) )
signingConfig = if (System.getenv("ANDROID_KEYSTORE_PATH").isNullOrEmpty()) { signingConfig =
signingConfigs.getByName("debug") if (System.getenv("ANDROID_KEYSTORE_PATH").isNullOrEmpty()) {
} else { signingConfigs.getByName("debug")
signingConfigs.getByName("release") } else {
} signingConfigs.getByName("release")
}
} }
} }
@@ -69,11 +70,12 @@ android {
} }
packaging { packaging {
resources.excludes += setOf( resources.excludes +=
"/META-INF/{AL2.0,LGPL2.1}", setOf(
"META-INF/LICENSE.md", "/META-INF/{AL2.0,LGPL2.1}",
"META-INF/LICENSE-notice.md", "META-INF/LICENSE.md",
) "META-INF/LICENSE-notice.md",
)
} }
} }