fix Android compileSdk version in tutasdk build.gradle.kts

The Android compileSdk version in the tutasdk build.gradle.kts has been
wrongly set to a different compileSdk version 34, instead of version 36
as with the other gradle artifacts (mail, calendar, shared). This
version discrepancy caused, when running the Android release build,
to not bundle the "libtutasdk.so" file correctly, leading to an
Android APK file without native rust code.

Co-authored-by: abp <abp@tutao.de>
Co-authored-by: das <das@tutao.de>
This commit is contained in:
jhm 2025-10-27 15:51:24 +01:00
parent 4d43b61ac8
commit 4c4309139c
No known key found for this signature in database
GPG key ID: 8932FDB35DF1C9E7

View file

@ -78,7 +78,7 @@ fun jniTargetToRustTargetName(jniTargetName: String): String {
android { android {
namespace = "de.tutao.tutasdk" namespace = "de.tutao.tutasdk"
compileSdk = 34 compileSdk = 36
defaultConfig { defaultConfig {
minSdk = 26 minSdk = 26