This is my Config
class:
public class Config
{
public static final String urlApi = "http://127.0.0.1/api/";
}
Whenever I want to change the location, I have to change the value of this variable:
public class Config
{
public static final String urlApi = "http://192.168.50.101/api/";
}
In this case, the value is:
But in debugging mode I saw that "urlApi" has the old value, old IP address. Its weird. How do I fix it ?