From dd89ea45050df5efb10b96db8f07e000d04edb94 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 11 Sep 2023 22:12:23 +0200 Subject: [PATCH] android/AndroidManifest.xml: raise minSdkVersion to 24 This is needed to build libFLAC which uses ftello(). --- NEWS | 2 ++ android/AndroidManifest.xml | 2 +- android/build.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 50e0c3125..49b8a485e 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,8 @@ ver 0.23.14 (not yet released) - wasapi: fix problem setting volume * more libfmt 10 fixes * fix auto-detected systemd unit directory +* Android + - require Android 7 or newer ver 0.23.13 (2023/05/22) * input diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index cbcc5f893..cbe293389 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -5,7 +5,7 @@ android:versionCode="72" android:versionName="0.23.14"> - + diff --git a/android/build.py b/android/build.py index 509cf85a4..e01c1c22f 100755 --- a/android/build.py +++ b/android/build.py @@ -78,7 +78,7 @@ class AndroidNdkToolchain: self.build_path = build_path ndk_arch = abi_info['ndk_arch'] - android_api_level = '21' + android_api_level = '24' install_prefix = os.path.join(arch_path, 'root')