Reputation: 5478
I'd like to be able to determine programmatically whether the app was built in debug or release mode. I'd like to be able to write something like:
if(isDebug) {
//do domething.
}
else {
//do something else.
}
Upvotes: 1
Views: 149
Reputation: 5478
After using the Chrome debugger I was able to unearth the solution. There's a constant set during the build process which you can query in order to determine whether the app has been built in debug or release mode.
if(kony.constants.RUNMODE === "debug" || appConfig.isDebug) {
//do domething.
}
else {
//do something else.
}
Upvotes: 2