mirror of
https://github.com/tutao/tutanota.git
synced 2025-12-08 06:09:50 +00:00
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:
parent
4d43b61ac8
commit
4c4309139c
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue