Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      10 Benefits of Hiring a React.js Development Company (2025–2026 Edition)

      August 13, 2025

      From Line To Layout: How Past Experiences Shape Your Design Career

      August 13, 2025

      Hire React.js Developers in the US: How to Choose the Right Team for Your Needs

      August 13, 2025

      Google’s coding agent Jules gets critique functionality

      August 13, 2025

      The best smartphones without AI features in 2025: Expert tested and recommended

      August 13, 2025

      GPT-5 was supposed to simplify ChatGPT but now it has 4 new modes – here’s why

      August 13, 2025

      Gemini just got two of ChatGPT’s best features – and they’re free

      August 13, 2025

      I found the easiest way to send files between my Android phone and desktop – and it’s free

      August 13, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      Laravel Boost is released

      August 13, 2025
      Recent

      Laravel Boost is released

      August 13, 2025

      Frontend Standards for Optimizely Configured Commerce: Clean & Scalable Web Best Practices

      August 13, 2025

      Live Agent Escalation in Copilot Studio Using D365 Omnichannel – Architecture and Use Case

      August 13, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      OpenAI’s Sam Altman: GPT-5 fails to meet AGI standards amid Microsoft’s fading partnership — “it’s still missing something”

      August 13, 2025
      Recent

      OpenAI’s Sam Altman: GPT-5 fails to meet AGI standards amid Microsoft’s fading partnership — “it’s still missing something”

      August 13, 2025

      You Think You Need a Monster PC to Run Local AI, Don’t You? — My Seven-Year-Old Mid-range Laptop Says Otherwise

      August 13, 2025

      8 Registry Tweaks that will Make File Explorer Faster and Easier to Use on Windows 11

      August 13, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»React Native 0.81 – Android 16 support, faster iOS builds, and more

    React Native 0.81 – Android 16 support, faster iOS builds, and more

    August 11, 2025

    Today we are excited to release React Native 0.81!

    This ships with support for Android 16 (API level 36) and includes a variety of other stability improvements and bugfixes, as well as experimental support for faster iOS builds using precompilation.

    Highlights​

    • Android 16 support
    • SafeAreaView deprecation
    • Community-maintained JavaScriptCore support
    • Experimental Precompiled iOS builds

    Highlights​

    Android 16 support​

    Android apps built with React Native 0.81 will now default to targeting Android 16 (API level 36).

    As previously announced by Google, Android 16 requires that apps are displayed edge-to-edge with no support for opting out.

    To support this, we are deprecating the <SafeAreaView> component as previously announced in favor of alternatives. See below which will provide better edge-to-edge support.

    We are also adding a new gradle property edgeToEdgeEnabled to let you choose if you wish to enable edge-to-edge on all supported Android versions beyond 16.

    Predictive back gesture is now enabled by default for apps targeting Android 16. The BackHandler API should continue to work as before for most use cases. However, if your app relies on custom native code for back handling (such as overriding the onBackPressed() method), you may need to manually migrate your code or temporarily opt-out. Please test your app’s back navigation thoroughly after upgrading.

    Google now expects apps to support adaptive layouts on large screen devices, regardless of orientation or size restrictions. While you can opt-out for now, it’s recommended to test and update your app for responsive UI on large screens before Android 17.

    Starting November 1, 2025, all Google Play app submissions must meet the 16 KB page size requirement for native binaries. This applies to new apps and updates targeting Android 15+ devices. React Native is already 16KB page size compliant. Ensure all your native code and third-party libraries are compliant as well.

    For more details on Android 16 changes and migration steps, refer to this post in the discussions-and-proposals repository.

    SafeAreaView deprecation​

    The built-in <SafeAreaView> component was originally designed to provide limited, iOS-only support for keeping content in the “safe areas” of the screen (away from camera notches, rounded corners, etc). It is not compatible with edge-to-edge rendering on Android, and does not permit customization beyond padding. As a result, many apps have opted for more portable and flexible solutions, such as react-native-safe-area-context.

    In React Native 0.81, the legacy <SafeAreaView> component is deprecated, and you will see warnings in React Native DevTools if your app uses it.

    It will be removed in a future version of React Native. We recommend that you migrate to react-native-safe-area-context or a similar library to ensure your app looks its best across all platforms.

    Community-maintained JavaScriptCore support​

    As we announced last year, support for the JavaScriptCore (JSC) engine has moved to a community-maintained package that is released separately from React Native itself. In React Native 0.81, we’re removing the built-in version of JavaScriptCore. All apps that require JavaScriptCore should now use the community package in order to upgrade to 0.81. Read the installation instructions for the details.

    This change does not affect apps that are using Hermes.

    Experimental Precompiled iOS builds​

    React Native 0.81 introduces precompiled iOS builds, cutting compile times by up to 10x in projects where React Native is the primary dependency. This is the result of a collaboration between Expo and Meta, and expands on work we previously shipped in React Native 0.80.

    This feature is still experimental, but we are hoping to enable it for all apps in a future release. If you’d like to try precompiled builds in your own app, you can enable them by specifying the following environment variables when you run pod install:

    RCT_USE_RN_DEP=1 RCT_USE_PREBUILT_RNCORE=1 bundle exec pod install

    Please provide feedback in this GitHub discussion.

    There are two limitations we are already aware of, and are working to resolve:

    • In precompiled builds, you cannot debug and step into React Native’s internals. You can still debug your own native code while using a precompiled version of React Native.
    • Prebuilds are not supported in Xcode 26 Beta, because the IDE builds all targets with Swift explicit modules) enabled. To use precompiled builds with Xcode 26, set the SWIFT_ENABLE_EXPLICIT_MODULES flag to NO in your Xcode project. We will address this in an upcoming patch release.

    You can read more about this feature in Expo’s full blog post, Precompiled React Native for iOS: Faster builds are coming in 0.81.

    Breaking Changes​

    Minimum Node.js bumped to 20​

    React Native now requires Node.js version 20.19.4 (the latest Maintenance LTS version at the time of writing) or higher. You may need to upgrade Node.js in your development or CI environment when you upgrade to React Native 0.81.

    Minimum Xcode bumped to 16.1​

    React Native now requires Xcode 16.1 or higher to build iOS projects. You may need to upgrade Xcode in your development or CI environment when you upgrade to React Native 0.81.

    Metro: Better support for advanced configuration in Community CLI projects​

    Metro now respects the resolveRequest and getModulesRunBeforeMainModule options if specified in the metro.config.js file of a React Native Community CLI project. Previously, setting them would have no effect. If you have custom values for these options in your metro.config.js file, you may need to delete them in order to restore the previous behavior.

    Improved reporting of uncaught JavaScript errors​

    React Native DevTools now shows the original message and stack trace of uncaught JavaScript errors, as well as the error’s cause if any, and an Owner Stack for errors thrown by components. This makes errors easier to debug and fix.

    Example error including a cause and Owner Stack

    If you are logging JavaScript errors to your backend or to a third-party error reporting service, this may affect the logs you see after upgrading to React Native 0.81 (for example: you might see more thrown errors that used to be reported via console.error), and you may need to update some backend logic accordingly.

    RN_SERIALIZABLE_STATE and C++ flags.​

    In this version of React Native, we introduced a new macro called RN_SERIALIZABLE_STATE to support serializable state for the Components on New Architecture.

    If you’re a library author and you have a custom CMakeLists.txt file, you will need to specify this macro in your CMakeLists.txt file or your C++ code could fail to compile.

    To support this, we introduce a new CMake function called target_compile_reactnative_options which will take care of setting up this macro and all the necessary C++ flags for you. You can invoke it as such in your CMakeLists file:

    target_compile_reactnative_options(myLibraryName PRIVATE)

    You can see an example of how react-native-screens has set up this macro.

    This change will affect only more advanced and complex libraries. If your library is using codegen and you don’t have a custom CMake file, you won’t be affected by this change.

    Other Breaking Changes​

    This list contains a series of other breaking changes we suspect could have a minor impact to your product code and are worth noting:

    Android​

    • We made several classes internal. Those classes are not part of the public API and should not be accessed. We already notified or submitted patches to the affected libraries:
      • com.facebook.react.fabric.mounting.MountingManager
      • com.facebook.react.views.text.TextLayoutManager
    • We moved the textAlignVertical native prop from TextAttribute.h to ParagraphAttribute.h
      • The prop textAlignVertical only affects the top most text view (paragraph view). Yet, it exists in text attribute props nonetheless. To better reflect this platform limitation it was moved to paragraph props.
      • This change is not affecting the JS API of the <Text> component.
      • You will be affected by this change only if you implement a Fabric component that interacts with the C++ Text API.
      • If you’re affected by this change, you can replace TextAttributes.h with ParagraphAttribute.h in your code

    Read the full list of breaking changes in the CHANGELOG for 0.81.

    Acknowledgements​

    React Native 0.81 contains over 1110 commits from 110 contributors. Thanks for all your hard work!

    We want to send a special thank you to those community members that shipped significant contributions in this release:

    • Christian Falch for the amazing work on precompiled iOS builds.
    • Mathieu Acthernoene for crucial contributions to Android edge-to-edge support
    • Enrique López-Mañas and for helping test Android 16 integration and the SafeAreaView deprecation.

    Upgrade to 0.81​

    Please use the React Native Upgrade Helper to view code changes between React Native versions for existing projects, in addition to the Upgrading docs.

    To create a new project:

    npx @react-native-community/cli@latest init MyProject --version latest

    If you use Expo, React Native 0.81 will be supported in the upcoming Expo SDK 54 as the default version of React Native.

    info

    0.81 is now the latest stable version of React Native and 0.78.x moves to unsupported. For more information see React Native’s support policy.

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous Articlecython-lint – lint Cython files
    Next Article CVE-2025-55161 – Stirling-PDF SSRF

    Related Posts

    Development

    Laravel Boost is released

    August 13, 2025
    Artificial Intelligence

    Scaling Up Reinforcement Learning for Traffic Smoothing: A 100-AV Highway Deployment

    August 13, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    Filament v4 Beta – Feature Overview

    Development

    CVE-2025-0984 – Netoloji Software E-Flow Cross-site Scripting (XSS) and File Content Injection Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-29906: Finit’s Bundled Getty Flaw Allows Authentication Bypass on Linux Systems

    Security

    John the Ripper is an advanced offline password cracker

    Linux

    Highlights

    CVE-2025-7420 – Tenda O3V2 HTTPd Stack-Based Buffer Overflow

    July 10, 2025

    CVE ID : CVE-2025-7420

    Published : July 11, 2025, 12:15 a.m. | 2 hours, 44 minutes ago

    Description : A vulnerability was found in Tenda O3V2 1.0.0.12(3880). It has been declared as critical. This vulnerability affects the function formWifiBasicSet of the file /goform/setWrlBasicInfo of the component httpd. The manipulation of the argument extChannel leads to stack-based buffer overflow. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used.

    Severity: 8.8 | HIGH

    Visit the link for more details, such as CVSS details, affected products, timeline, and more…

    CVE-2025-3921 – PeproDev Ultimate Profile Solutions WordPress Unauthenticated Data Modification Vulnerability

    May 6, 2025

    Fix Twitter/X Not Logging In [Desktop & Mobile]

    June 22, 2025

    CVE-2025-46341 – FreshRSS HTTP Auth Header Impersonation Vulnerability

    June 4, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.