Room vs Active Android

The recently announced google room library to facilitate the implementation of local Android data storage. Since I already used Active Android in my previous project, I could not understand the benefits of Room over Active android. Actually the implementation of the wise, I felt that Active Android is easier. Does someone explain the differences between Google Room and Active Android? Which one is better in performance?

Thanks in advance

+4
source share
1 answer

Number During Google 2017 I / O, Google introduces the Number Preservation Library as a new library that is working to create a clean architecture for developing Android applications. Room is a SQLite object mapping library. Room fits well with clean architecture.

ActiveAndroid I use ActiveAndroid for most of my projects. ActiveAndroid is an active ORM write style that allows you to save and retrieve SQLite database records without even writing a single SQL statement. The library takes care of all SQLite settings and materials, and all of them contain only some simple lines of code and a few simple configuration steps.

+2
source

Source: https://habr.com/ru/post/1694028/


All Articles