Where should I declare a class that only must be compiled for the debug variant of an app in Android Studio?
What I want to make is to save some faked responses from a web service, stripping it from the release version to ensure never ship that code:
public static DebugFakeResponses{
public static final String RESPONSE_SERVER_IN_MAINTENTANTE
="{\"error\":\"In Maintentance\"}";
}
Thanks