I am trying to add string values ββto a JsonArray and after that create a Json String to send it to the server.
I searched on google but did not find anything useful. Can someone tell me how to do this? Thanks
JSONArray list = new JSONArray(); list.put("Hello"); list.put("Hey");
After that I want to create a JSONString
source share