I have a Dashboard.java file where I use strings.xml parsed in R.java auto generated file.
When I try to do:
public String BASE_URL = R.string.BASE_URL;
Naturally will tell Cannot convert from int to String.
But that's what will be chosen from string.xml for the translation.
Is there a way around this?
Thanks