I am using ormlite and sqlite togethe in my Application. so there is no problem with inserting the data. while fetching the the data. i am getting this log.
02-27 14:27:58.873: E/AndroidRuntime(7605): java.lang.NoSuchMethodError: net.sqlcipher.database.SQLiteDatabase.rawQuery
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.j256.ormlite.android.AndroidCompiledStatement.getCursor(AndroidCompiledStatement.java:162)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.j256.ormlite.android.AndroidCompiledStatement.runQuery(AndroidCompiledStatement.java:57)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.j256.ormlite.stmt.SelectIterator.<init>(SelectIterator.java:55)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.j256.ormlite.stmt.StatementExecutor.buildIterator(StatementExecutor.java:232)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.j256.ormlite.stmt.StatementExecutor.query(StatementExecutor.java:181)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.j256.ormlite.dao.BaseDaoImpl.query(BaseDaoImpl.java:263)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.example.ormlitedbencryption.BookManager.getBookWithName(BookManager.java:72)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.example.ormlitedbencryption.MainActivity.onCreate(MainActivity.java:20)
02-27 14:27:58.873: E/AndroidRuntime(7605): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
02-27 14:27:58.873: E/AndroidRuntime(7605): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
02-27 14:27:58.873: E/AndroidRuntime(7605): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
02-27 14:27:58.873: E/AndroidRuntime(7605): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
02-27 14:27:58.873: E/AndroidRuntime(7605): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
02-27 14:27:58.873: E/AndroidRuntime(7605): at android.os.Handler.dispatchMessage(Handler.java:99)
02-27 14:27:58.873: E/AndroidRuntime(7605): at android.os.Looper.loop(Looper.java:123)
02-27 14:27:58.873: E/AndroidRuntime(7605): at android.app.ActivityThread.main(ActivityThread.java:4627)
02-27 14:27:58.873: E/AndroidRuntime(7605): at java.lang.reflect.Method.invokeNative(Native Method)
02-27 14:27:58.873: E/AndroidRuntime(7605): at java.lang.reflect.Method.invoke(Method.java:521)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
02-27 14:27:58.873: E/AndroidRuntime(7605): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
02-27 14:27:58.873: E/AndroidRuntime(7605): at dalvik.system.NativeStart.main(Native Method)
i have imported all the libs and net.sqlcipher and net.sqlcipher.database packges but still getting this exception. please let me know if u have any suggestions