From 4c4309139c48bced7922604c67695134abd173f7 Mon Sep 17 00:00:00 2001 From: jhm <17314077+jomapp@users.noreply.github.com> Date: Mon, 27 Oct 2025 15:51:24 +0100 Subject: [PATCH] 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 Co-authored-by: das --- tuta-sdk/android/sdk/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuta-sdk/android/sdk/build.gradle.kts b/tuta-sdk/android/sdk/build.gradle.kts index 63de9665d1..be2638776b 100644 --- a/tuta-sdk/android/sdk/build.gradle.kts +++ b/tuta-sdk/android/sdk/build.gradle.kts @@ -78,7 +78,7 @@ fun jniTargetToRustTargetName(jniTargetName: String): String { android { namespace = "de.tutao.tutasdk" - compileSdk = 34 + compileSdk = 36 defaultConfig { minSdk = 26