I try to load a url from string line to pass a url for my RSS feed.
current code is:
String RSSFEEDURL = "http://feed.com/feed/";
I add a string in the string file:
<string name="RSSFEEDURL">http://download.yallagroup.net/en/feed</string>
And then I try to call it from the java using this code:
String RSSFEEDURL = getString(R.string.RSSFEEDURL);
But it does not load. Any help with that?