Is code after __DEV__ is included in final bundle?

Viewed 5

I have an App where I set login and password using __DEV__ in order to do some quick tests. Like:

const [email, setEmail] = useState(__DEV__ ? 'my.email@gmail.com' : '')
const [password, setPassword] = useState(__DEV__ ? 'mypassword' : '')

Is it possible for some hacker to extract data from the bundle from the App Store or the Play Store? I guess not, but how to be 100% sure?

0 Answers
Related