문제

Our data in our Android app has started to get more complex and is being updated. So, I need to persist relational data that I am pulling from our backend via REST json services. I'm thinking I should use a SQL lite data store on the android device rather than the serialized string data store we are currently using.

Is there something similar to CoreData and AFIncrementalStore from iOS in Android. I was looking at Green Dao with SQL-Lite but not sure if there is a better solution out there specialized for ORM from JSON REST services to SQL lite.

도움이 되었습니까?

해결책

Take a look at OrmLite. You can use it with RoboSpice for automagically retrieve data from your REST service and persist them inside local database.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top