### Below were the dependencies I am using for integration of dbflow with sqlCipher :
annotationProcessor 'com.github.agrosner.dbflow:processor:5.0.0-alpha2'
implementation 'com.github.agrosner.dbflow:core:5.0.0-alpha2'
implementation 'com.github.agrosner.dbflow:lib:5.0.0-alpha2'
implementation 'com.github.agrosner.dbflow:sqlcipher:5.0.0-alpha2'
implementation 'net.zetetic:android-database-sqlcipher:4.5.4@aar'
implementation 'androidx.sqlite:sqlite-ktx:2.4.0'
kapt 'com.github.agrosner:KPoet:1.0.0' // Add the KPoet dependency here
implementation 'com.squareup:javapoet:1.13.0'
Gadle configuration :
compileSdk 34
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.hhaexchange.caregiver"
minSdkVersion 23
targetSdkVersion 34
versionCode 136
versionName "24.03.02"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
Issue:
I am encountering a problem where the auto-generated classes for our model classes, which are essential for retrieving locally stored data, are not being generated. Any assistance in resolving this issue would be greatly appreciated.
### Below were the dependencies I am using for integration of dbflow with sqlCipher :
Gadle configuration :
compileSdk 34
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.hhaexchange.caregiver"
minSdkVersion 23
targetSdkVersion 34
versionCode 136
versionName "24.03.02"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
Issue:
I am encountering a problem where the auto-generated classes for our model classes, which are essential for retrieving locally stored data, are not being generated. Any assistance in resolving this issue would be greatly appreciated.