summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-05-04 14:36:50 -0300
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-05-04 14:36:50 -0300
commitaf4508e04cda6a3389408ee498ecff32178a49e3 (patch)
tree3119343ed0b0f29fd0a2b1b569614f48f7308790
parent5129b81698270615ae5e79c1967a0cc7c9594ce1 (diff)
parent6f183fd98d06ccc13dd75111266f04cca66d36b2 (diff)
downloadmullvadvpn-af4508e04cda6a3389408ee498ecff32178a49e3.tar.xz
mullvadvpn-af4508e04cda6a3389408ee498ecff32178a49e3.zip
Merge branch 'increase-minimum-api-level'
-rw-r--r--CHANGELOG.md4
-rw-r--r--android/build.gradle2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2a0f54716d..d41e1bceea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -34,6 +34,10 @@ Line wrap the file at 100 chars. Th
- Rename "Block when disconnected" setting to "Always require VPN" and add additional explanation
of the setting.
+#### Android
+- Adjust the minimum supported Android version to correctly reflect the supported versions decided
+ in 2020.4-beta2. The app will now only install on Android 7 and later (API level 24).
+
### Fixed
- Fixed bogus or absent update notifications on the desktop app due to incorrect deserialization of
a struct sent from the daemon.
diff --git a/android/build.gradle b/android/build.gradle
index 7b8105ac0c..d3eeab64d8 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -21,7 +21,7 @@ android {
defaultConfig {
applicationId "net.mullvad.mullvadvpn"
- minSdkVersion 19
+ minSdkVersion 24
targetSdkVersion 28
versionCode 20040003
versionName "2020.4-beta3"