Android : What I'm trying to say is, let's say I have an app that has the following function
public void FetchCodeAndRun()
{
ConnectToDatabase();
String code = FetchCode();
ExecuteJava(code);
}
I'm in need of this method because I would like to modify pieces of code of an app just by changing code in a database
Any help or any other innovative solution to achive this is appreciated. Thanks in advance :)