-
Notifications
You must be signed in to change notification settings - Fork 22
Description
The current RN version is: "react-native": "0.75.3"
RN 0.77 supports Android 15 16kb, the following is the original text of the RN update:
Android version 15 support & 16KB page support
Forced edge-to-edge on Android 15
We’ve already done some work to support Android 15 on the prior release. One of the noticeable changes in Android 15 is forced edge-to-edge display when you build apps with targetSdk 35.
If you have not looked into this yet, please refer to our prior recommendation on how this should be handled as ignoring this can potentially break your UI in the app.
note
If you are using the react-native-safe-area-context in your app, the library is already handling the forced edge-to-edge for you.
16 KB page size support for Android
Android 15 introduces support for 16KB memory page size enabling performance improvements for apps and more, but making previous 4KB-based apps potentially incompatible on future devices; it's currently an opt-in feature for developers to test on select devices to prepare for 16 KB page size being the OS default.
With the 0.77 release, React Native is ready to fully support 16 KB page size and developers will be able to test and ship apps for 16 KB devices using it.
Please refer to the official Android Developers site for further information on 16 KB support.
Thanks a lot.