Android DB is a library that allows access to the database synchronously and asynchronously. Works on Android 4.1 (API level 16) and upwards.

In order to use the library, there are 3 options:
1. Gradle dependency
- Add the following to your
build.gradle:
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.raxden:AndroidDB:v2.2.0@aar'
}2. Maven
- Add the following to your
pom.xml:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.raxden</groupId>
<artifactId>AndroidDB</artifactId>
<version>v2.2.0</version>
</dependency>3. clone whole repository
- Open your commandline-input and navigate to your desired destination folder (where you want to put the library)
- Use the command
git clone https://github.com/raxden/AndroidDB.gitto download the full AndroidDB repository to your computer (this includes the folder of the library project as well as the example project)
For a detailed documentation, please have a look at the Wiki or the Javadocs.