Assets allow including arbitrary files like text, XML, fonts, music and video in an application. To read a JSON file from assets:
1. Create an "assets" folder and copy the JSON file there
2. Use AssetManager to open an input stream and read the file into a string
3. Parse the JSON string into a JSONObject and extract the data to populate an ArrayList used by a GridAdapter to display the data in a GridView.