I am getting a list from the json response that I want to convert to strings.
String fruits = remoteMessage.getData().get("fruits");
The above line gives me the following response,
["California Apple","Mango","Mexico Original Banana"]
Now, what I need is,
"California Apple", "Mango", "Mexico Original Banana"
How could this be achieved?