skip to Main Content

Is it possible to built a module in android studio that uses the camera of the celphone and then compiled it in some war to use it in react native?
Is there some can of bridge that can allow me to use android studio code in react native?

2

Answers


  1. Check out Ionic, it’s the other way around, but very helpful.

    https://ionicframework.com/native

    Using "Capacitor" you build the web app, and it generates an android project and loads it in android studio for further editing.

    Login or Signup to reply.
  2. Yes, you can write native code and run it on JS side with NativeModules.

    Native Modules Intro – React Native

    Android Native Modules – React Native

    You can also run or do what you want to do to your react native app from Android Studio just like any other android app.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search