I\'m contemplating on using React Native for a new web app. Is it possible to ship both iOS and Android apps using it?
I know that it\'s on the roadmap, but it\'s un
you don't need to maintenance separate code base for android & ios. Actually you can use same code base for build android & ios. I recommend to read the react-native documentation(according to react-native version you are using) before using any inbuilt component in your code. Eg:- TextInput component onKeyPress function supports for ios only.
if ur are using external lib check these lib support for both ios and android. Anyway you have to configure external lib separately(install) both android and ios.
hope this will helpful.