I have a variable which is a string of JSON, this JSON is an array of objects:
String actions = "[{'title': 'BBC', 'url': 'https://www.bbc.co.uk'}, {'title': 'GOOGLE', 'url': 'https://www.google.com'}]"
I need to convert this into some thing that I can use within my android app, so an array or object that I can iterate over. How would I go about this?