I am developing an android app that uses nostra13 library. First, nostra13 uses a class file that contains array of strings which are the urls of the images to be downloaded.
ex.
public static final String[] IMAGES = new String[]{
"http://www.ltp.com.ph/SiteImages/Technilink/TL_1Q13_CE.jpg",
"http://www.ltp.com.ph/SiteImages/Technilink/TL_4Q12_CE.jpg",
"http://www.ltp.com.ph/SiteImages/Technilink/TL_2Q12_CE.jpg",
"http://www.ltp.com.ph/SiteImages/Technilink/TL_1Q12_CE.jpg",
"http://www.ltp.com.ph/SiteImages/Technilink/TL_4Q11_CE.jpg",
"http://www.ltp.com.ph/SiteImages/Technilink/TL_2Q11_CE.jpg",
"http://www.ltp.com.ph/SiteImages/Technilink/TL_1Q11_CE.jpg",
"http://www.ltp.com.ph/SiteImages/Technilink/TL_4Q10_CE.jpg"
};
Is there a way to update this string array online? Like I want to put some file online then the app would download it and update the String[] IMAGES? THANKS!