Switch View Modes in Dev Client?

So when launching NG Client in developer, but of course it will tick off any code that is ‘isDeveloper’.

I’m curious, is there a way to see the ‘customer’ / non-Developer view? Like either launching it into non-developer view, or even being able to switch it DURING running the client.

Instead of checking application.isInDeveloper() everywhere, you could set a global variable or create a function to do this.
Then when you don’t want it to run the developer, you are able to simply override the value based on some condition.

Hope this helps

mboegem:
Instead of checking application.isInDeveloper() everywhere, you could set a global variable or create a function to do this.
Then when you don’t want it to run the developer, you are able to simply override the value based on some condition.

Hope this helps

Hmmm inspired by this I thought of another way I could do it is by implementing a hidden sidenav. One where I can put developer related stuff into.

Basically like a debug menu: What Could a Debug Menu Contain? - Halcyon Mobile