How do I detect if I am in release or debug mode?
android, android-build-type
Solution
if (BuildConfig.DEBUG) {
}
This Is Working For Me
Problem
How can I detect in my code that I am in Release mode or Debug mode?
android, android-build-type
if (BuildConfig.DEBUG) {
}
This Is Working For Me
How can I detect in my code that I am in Release mode or Debug mode?