running react native app debug code example
Example 1: native run app debug
native-run.cmd android --app platforms\android\app\build\outputs\apk\debug\app-debug.apk
Example 2: how to identify debug and release build in react native
if (__DEV__) {
console.log('I am in debug');
}