Hello friends, today we will see a simple CRUD Example in Android using Active Android Library .This is a perfect alternate for SQLite in Android. About Active Android ActiveAndroid is an active record style ORM ( object relational mapper ). What does that mean exactly? Well, ActiveAndroid allows you to save and retrieve SQLite database records without ever writing a single SQL statement. ActiveAndroid takes care of all the setup for Accessing the database in android. Project Setup In the project you just created go to the app level build.gradle file and add these lines. dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.4.0' //Add this line compile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT' } repositories { jcenter() //Add these two lines mavenCentral() maven { url "https://oss.sonatype.org/content/repositorie...