I have a java statement like this:
int MAX_CACHE_AGE = TimeUnit.DAYS.toMillis(14);
And I want to have a max cache age of 0 when debugging. However, I also want to minimize the complexity of my build. What are some ways I can do this? How do you do this? I am developing for Android so if your method is Android specific, tell my anyway.