I am working on Volley but i am quite new to this framework i have no idea how to post JSON data using volley, i have one sample JSON please tell me how to post this JSON data.
JSONObject jsonObject = new JSONObject();
jsonObject.put("email", "abcd@g.com");
jsonObject.put("password", "abcd123");
jsonObject.put("device", "jdghfdhgdhi");
jsonObject.put("latitude", 1.2456);
jsonObject.put("longitude", 1.3466);
Please kindly go through my JSON and let me know how to post this JSON using volley.