A Dictionary Database Interface over SQlite, for a simpler DAL in Android apps
To get started, simply add the following to your root project gradle file:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
And in your app's gradle file, add the following to the dependencies..
dependencies {
// your other deps...
// Add XliteDatabase Library
implementation 'com.github.NuChwezi:xlitedatabase:TAG'
}
Please check JitPack for the latest release of this library, so you replace TAG
in the above snippet with the right release name.
Here is a basic example of how an android activity can invoke the XLiteDatabase (XLDB) with a demonstration of the basic CRUD operations.