Increase target SDK to 34

This commit is contained in:
Jules Aguillon 2024-05-29 14:04:14 +02:00
parent 93d58571cc
commit 5d2eb35574
2 changed files with 3 additions and 3 deletions

View File

@ -4,12 +4,12 @@ plugins {
android { android {
namespace 'juloo.keyboard2' namespace 'juloo.keyboard2'
compileSdk 33 compileSdk 34
defaultConfig { defaultConfig {
applicationId "juloo.keyboard2" applicationId "juloo.keyboard2"
minSdk 11 minSdk 11
targetSdkVersion 33 targetSdkVersion 34
versionCode 39 versionCode 39
versionName "1.27.0" versionName "1.27.0"
} }

View File

@ -9,7 +9,7 @@ let
android = pkgs.androidenv.composeAndroidPackages { android = pkgs.androidenv.composeAndroidPackages {
buildToolsVersions = [ build_tools_version ]; buildToolsVersions = [ build_tools_version ];
platformVersions = [ "33" ]; platformVersions = [ "34" ];
abiVersions = [ "armeabi-v7a" ]; abiVersions = [ "armeabi-v7a" ];
}; };