Neues Release

This commit is contained in:
Herbert Reiter
2025-08-30 16:28:39 +02:00
parent c6f942b6df
commit 4ce19d6ee9
4 changed files with 21 additions and 3 deletions
+8
View File
@@ -1,5 +1,13 @@
# Changelog # Changelog
## 3.9.5.1 (versionCode 48, 2025-08-30)
- Bugfix: Searchbar not visible on newer Android versions
- Shortened app name
- Update minimum supported Android API to 33 (Android 13)
- Use Nullable annotations from Android package
- Upgrade library dependencies
## 3.9.5.0 (versionCode 47, 2025-07-06) ## 3.9.5.0 (versionCode 47, 2025-07-06)
- Update to moasdawiki-server 3.9.5 - Update to moasdawiki-server 3.9.5
+3 -3
View File
@@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
android { android {
namespace = "net.moasdawiki.app" namespace = "net.moasdawiki.app"
compileSdk = 36 // 36 = Android 16 compileSdk = 36 // 36 = Android 16 Baklava
defaultConfig { defaultConfig {
applicationId "net.moasdawiki.app" applicationId "net.moasdawiki.app"
minSdk = 33 // 33 = Android 13 Tiramisu minSdk = 33 // 33 = Android 13 Tiramisu
targetSdk = 36 // should be same as compileSdk targetSdk = 36 // should be same as compileSdk
versionCode = 47 versionCode = 48
versionName = "3.9.5.0" versionName = "3.9.5.1"
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_11 sourceCompatibility JavaVersion.VERSION_11
@@ -0,0 +1,5 @@
- Bugfix: Suchleiste nicht sichtbar auf neueren Androidversionen
- Appname gekürzt
- Minimalanforderung auf Android API to 33 (Android 13) erhöht
- Nullable-Annotation auf Android-Paket umstellen
- Bibliotheks-Abhängigkeiten aktualisieren
@@ -0,0 +1,5 @@
- Bugfix: Searchbar not visible on newer Android versions
- Shortened app name
- Update minimum supported Android API to 33 (Android 13)
- Use Nullable annotations from Android package
- Upgrade library dependencies