Search code examples
debuggingadbreact-native

Can I debug react native app(debug version) without having source code?


Recently I have created react-native debug apk.

I have given this apk to my testing team , testing team want to debug this apk, but they don't have source code, so they unable to debug apk.

They just want to see performance and api calls. Is react native app possible to debug without having source code??

I have created app by following below url. Build and Install unsigned apk on device without the development server?

Error: https://ibb.co/7GZ1MQB


Solution

  • Why don't they start the APK with Android-Studio. There you have some handy tools to profile and you have logcat to see all actions which happends within the app.

    No need for the reactNative - SourceCode.

    enter image description here