This document describes how to set up Cozo for use in Android. To learn how to use CozoDB (CozoScript), read the docs.
Artefacts are on Maven central:
implementation 'io.github.cozodb:cozo_android:0.7.2'
The API is identical to that in the JVM library.
You can build upon the example project here.
In build.gradle
of your app:
android {
defaultConfig {
ndk {
abiFilters 'arm64-v8a', 'x86'
}
}
}
For more information: