Move com.android to com.pojavdx

This commit is contained in:
khanhduytran0 2020-03-25 05:36:13 +07:00
parent 8cedf73bde
commit f6fd1c152b
1517 changed files with 11287 additions and 2641 deletions

View file

@ -694,7 +694,7 @@ public class MainActivity extends Activity implements OnTouchListener
String arg = args[i];
String argVar = null;
if (arg.startsWith("${") && arg.endsWith("}")) {
argVar = arg.substring(2, arg.length() - 2);
argVar = arg.substring(2, arg.length() - 1);
for (Map.Entry<String, String> keyValue : keyValueMap.entrySet()) {
if (argVar.equals(keyValue.getKey())) {
args[i] = keyValue.getValue();