android/AndroidManifest.xml: raise minSdkVersion to 24
This is needed to build libFLAC which uses ftello().
This commit is contained in:
parent
f68305bf00
commit
a868dbce3b
2
NEWS
2
NEWS
|
@ -39,6 +39,8 @@ ver 0.24 (not yet released)
|
||||||
* switch to C++20
|
* switch to C++20
|
||||||
- GCC 10 or clang 11 (or newer) recommended
|
- GCC 10 or clang 11 (or newer) recommended
|
||||||
* static partition configuration
|
* static partition configuration
|
||||||
|
* Android
|
||||||
|
- require Android 7 or newer
|
||||||
* Windows
|
* Windows
|
||||||
- build with libsamplerate
|
- build with libsamplerate
|
||||||
- remove JACK DLL support
|
- remove JACK DLL support
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
android:versionCode="72"
|
android:versionCode="72"
|
||||||
android:versionName="0.23.14">
|
android:versionName="0.23.14">
|
||||||
|
|
||||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30"/>
|
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="30"/>
|
||||||
|
|
||||||
<uses-feature android:name="android.software.leanback"
|
<uses-feature android:name="android.software.leanback"
|
||||||
android:required="false" />
|
android:required="false" />
|
||||||
|
|
|
@ -78,7 +78,7 @@ class AndroidNdkToolchain:
|
||||||
self.build_path = build_path
|
self.build_path = build_path
|
||||||
|
|
||||||
ndk_arch = abi_info['ndk_arch']
|
ndk_arch = abi_info['ndk_arch']
|
||||||
android_api_level = '21'
|
android_api_level = '24'
|
||||||
|
|
||||||
install_prefix = os.path.join(arch_path, 'root')
|
install_prefix = os.path.join(arch_path, 'root')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue