this library contains 2 utils.
- ContentValueWriter helps you to reflect your entity to ContentValues.
- CursorReader helps you to reflect cursor data to your entity.
- field names of your entity should be the same with column names.
you can use this library through JitPack.io
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
dependencies {
compile 'com.github.ShinChven:android-dbkits:1.0.1'
}