Which version does React Native support (iOS and Android)?

AndroidIosReact NativeMobile ApplicationMobile Development

Android Problem Overview


I can't find this information. Is it true that Android React Native runs on sdkMin18 and therefore makes it supported by most android versions?

Android Solutions


Solution 1 - Android

You can run it on minSdk 21 as it is documented on the framework's github page. >React Native apps may target iOS 11.0 and Android 5.0 (API 21) or newer.

Solution 2 - Android

  • for February 2020:
  • React Native apps may target iOS 10.0 and Android 4.1 (API 16) or newer.
  • Expo supports Android 5+ and iOS 10+.

Solution 3 - Android

The supported iOS version changes all the time, but you can find it at any time by checking the Podfile on the official repository:

https://github.com/facebook/react-native/blob/main/template/ios/Podfile

For example, as of December 2021, the supported iOS version is 11.0.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJoeView Question on Stackoverflow
Solution 1 - AndroidMurat KaragözView Answer on Stackoverflow
Solution 2 - AndroidArtem BochkarevView Answer on Stackoverflow
Solution 3 - AndroidlaurentView Answer on Stackoverflow