diff options
| author | Jules Aguillon | 2024-02-10 17:24:15 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2024-02-10 17:24:15 +0100 |
| commit | 332413ed3c34b6e4021c3bad97625704edb8b5c6 (patch) | |
| tree | bbcca8002a54ca693ddea1e1d244f93b0a99ccb5 /build.gradle | |
| parent | 93d8af45059e98c40cc19166db497643540b9ac1 (diff) | |
| download | unexpected-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.gradle | 2 |
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" |
