I have a Dashboard.java file where I use strings.xml parsed in a R.java auto generated file.
When I try to do:
public String BASE_URL = R.string.BASE_URL;
Naturally say Unable to convert from int to String.
But what will be selected from string.xml for translation.
Is there any way around this?
thanks
source share