Upgrade to Android SDK version 30

This commit is contained in:
Jules Aguillon 2021-12-12 23:48:05 +01:00
parent d787d982cf
commit e5fa23e1f7
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
android:hardwareAccelerated="false">
<uses-sdk android:minSdkVersion="4"
android:targetSdkVersion="29" />
android:targetSdkVersion="30" />
<application android:label="@string/app_name"
android:allowBackup="true"

View File

@ -2,7 +2,7 @@
PACKAGE_NAME = juloo.keyboard2
ANDROID_PLATFORM_VERSION = android-29
ANDROID_PLATFORM_VERSION = android-30
JAVA_VERSION = 1.7
SRC_DIR = srcs

View File

@ -7,7 +7,7 @@ let
android = pkgs.androidenv.composeAndroidPackages {
buildToolsVersions = [ "30.0.3" ];
platformVersions = [ "29" ];
platformVersions = [ "30" ];
abiVersions = [ "armeabi-v7a" ];
};