android: add json array to java value
This commit is contained in:
@@ -79,6 +79,8 @@ public class DoricUtils {
|
||||
return new JavaValue(((JSONBuilder) arg).toJSONObject());
|
||||
} else if (arg instanceof JSONObject) {
|
||||
return new JavaValue((JSONObject) arg);
|
||||
} else if (arg instanceof JSONArray) {
|
||||
return new JavaValue((JSONArray) arg);
|
||||
} else if (arg instanceof String) {
|
||||
return new JavaValue((String) arg);
|
||||
} else if (arg instanceof Integer) {
|
||||
|
Reference in New Issue
Block a user