Is it possible in AndroidStudio to use a string as code?
For example if I load a file called code.txt
including Log.d("DEBUG", yourstring);
and it will be included at the Java file
public onClick(View v){
String string = "It worked";
codetxt.include();
}
And if it is clicked it will Log It worked
If this is possible please tell me!