* change rhino to 1.7.7.2

* fix: wrap java.lang.String to native string
This commit is contained in:
hyb1996
2017-11-02 13:18:29 +08:00
parent e8110c76a2
commit 43263a62ff
6 changed files with 16 additions and 2 deletions

View File

@@ -39,6 +39,9 @@ __runtime__.bridges.setBridges({
}
}
return arr;
},
toString: function(o){
return String(o);
}
});
@@ -67,3 +70,4 @@ require("__general__")(__runtime__, this);
__importClass__(android.view.KeyEvent);
__importClass__(com.stardust.autojs.core.util.Shell);