I need to store some Data (Questions) because of copyright reasons locally encrypted on the Device. My Process would be: Download raw JSON from Server -> either store it locally encrypted and everytime the App starts I decrypt and parse it or I store it in an encrypted SQLite DB (e.g. with SQLCipher) and access this DB.
What would be the advantages(speed? security?) of those two ways and is there a better way to do this?