giulio98 / libcapture

libcapture is a multiplatform c++ library that allows to capture the display and the microphone audio.
GNU General Public License v3.0
12 stars 3 forks source link

Support 16kb page size for Android 15+ devices #15

Open yousrasd opened 2 months ago

yousrasd commented 2 months ago

Description

I am encountering issues when running my app on Android 15 devices with a 16 KB page size, particularly with some native components. Are there any plans to recompile the library to address these issues and ensure compatibility with phones that have a 16 KB page size?

As stated on Android doc,

Beginning with Android 15, Android supports devices that are configured to use a page size of 16 KB (16 KB devices). If your app uses any NDK libraries, either directly or indirectly through an SDK, then you will need to rebuild your app for it to work on these 16 KB devices.

An analysis of my app using the APK Analyzer as described by Android shows that it does use libcapture as native code.

image

This is the native binary reported by the APK analysis:



Describe the solution you'd like



Additional context