Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert android existing app to react-native android [closed]

I have developed an android app with code, i want to convert to react native android. is this possible to convert an existing android app to react native?

like image 813
Prasanna Avatar asked Oct 18 '25 21:10

Prasanna


1 Answers

React Native is a JS based layer programming provided by FB. If you want to convert the existing android app into RN then you need to create a separate project in RN using node and have to change your Activity or Fragment views design into RN Js components and for functionality you have to create a bridge module so that communication would be establish in between RN JS Components and Android native code.

There is library that would help to make from native to react native using library react native brownfield, this library will help to make bridging your native app with react native.

like image 126
Akhi Avatar answered Oct 21 '25 10:10

Akhi