0

we need to develop an android app , that contains data (this data don't change after the installation- ie : all data is static) and i need to know what the best way to store data , JSON or Sqlite ?

Mehdi silber
  • 31
  • 1
  • 3
  • 1
    Possible duplicate of [What I should pick - JSON or SQLite?](https://stackoverflow.com/questions/18028619/what-i-should-pick-json-or-sqlite) – Obsidian Age Sep 07 '17 at 22:06

2 Answers2

0

Read about Realm, it's very handy SQL library that uses Java Pojo classes

Kacper
  • 620
  • 1
  • 7
  • 16
0

sqlite, because if i wanted to share my data just in case later point of time with the other apps on the phone then i need content providers which deals with the sqlite not the json.

Abhilash Reddy
  • 428
  • 1
  • 4
  • 19