Is there a way to tell if the Android React-Native app is in "release mode" at runtime?
Is there perhaps a well to tell if the app has been signed?
Cheers, Mike
Is there a way to tell if the Android React-Native app is in "release mode" at runtime?
Is there perhaps a well to tell if the app has been signed?
Cheers, Mike
Just check if __DEV__
is true or false
if (__DEV__) {
// then development mode
} else {
// release mode
}