Please help solve the issue
My code:
import net.zetetic.database.sqlcipher.SupportOpenHelperFactory
private val passPhrase: ByteArray ="test".toByteArray()
System.loadLibrary("sqlcipher")
val database = Room
.databaseBuilder(context, AppDatabase::class.java, DB_NAME)
.allowMainThreadQueries()
.openHelperFactory(SupportOpenHelperFactory(passPhrase))
My code:
Received error:
APK app-debug.apk is not compatible with 16 KB devices. Some libraries have LOAD segments not aligned at 16 KB boundaries:
lib/arm64-v8a/libbarhopper_v3.so
lib/arm64-v8a/libbd25.so
lib/arm64-v8a/libdgrt.so
lib/arm64-v8a/libimage_processing_util_jni.so
Library verions
implementation 'net.zetetic:sqlcipher-android:4.9.0@aar'
