diff options
author | Max Kellermann <max@musicpd.org> | 2018-08-17 18:44:05 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-08-17 19:01:37 +0200 |
commit | 98efb4f6d518765af5a9f9d86fffc33a94056fdb (patch) | |
tree | 3ba3981c80f85ec72cf0c283a1194b0e91404de6 /android/build.py | |
parent | 36edb4886c371b90bdc27eed305f112196dfb765 (diff) |
android: raise minSdkVersion to 21
The number of MPD installs on Android < 5.0 is negligible, and that
API version introduces lots of useful features for MPD.
Diffstat (limited to 'android/build.py')
-rwxr-xr-x | android/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/build.py b/android/build.py index 33f08151e..2b29a3fcd 100755 --- a/android/build.py +++ b/android/build.py @@ -65,7 +65,7 @@ class AndroidNdkToolchain: self.build_path = build_path ndk_arch = abi_info['ndk_arch'] - android_api_level = '14' + android_api_level = '21' ndk_platform = 'android-' + android_api_level # select the NDK compiler |