Is there a good guide for adding a debug mode to t...
# android-architecture
s
Is there a good guide for adding a debug mode to the app that would only be enabled during debug builds? Like say specifically for being able to switch web server endpoints and turning on something like MockWebServer?
s
if (BuildConfig.DEBUG) { … }
s
thanks