abouttreesummaryrefslogcommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorJules Aguillon2024-02-10 17:24:15 +0100
committerJules Aguillon2024-02-10 17:24:15 +0100
commit332413ed3c34b6e4021c3bad97625704edb8b5c6 (patch)
treebbcca8002a54ca693ddea1e1d244f93b0a99ccb5 /build.gradle
parent93d8af45059e98c40cc19166db497643540b9ac1 (diff)
downloadunexpected-keyboard-332413ed3c34b6e4021c3bad97625704edb8b5c6.tar.gz
unexpected-keyboard-332413ed3c34b6e4021c3bad97625704edb8b5c6.zip
Drop support for Android versions below 3.0
Android 3.0 (API level 11) was released in Feb 2011. These versions were already unsupported due to unavoidable calls to: - MotionEvent.getActionMasked() (API 8) And avoidable calls to: - SharedPreferences.Editor.putStringSet() (API 11)
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index ab76584..8ff3f0d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -8,7 +8,7 @@ android {
defaultConfig {
applicationId "juloo.keyboard2"
- minSdk 4
+ minSdk 11
targetSdkVersion 33
versionCode 38
versionName "1.26.0"