How can I use ORMLite with SQLCipher together in Android?
I would like to use OrmLite with SQLCipher in my Android project, but both libraries have their own abstract SQLiteOpenHelper class to implement. Java don't allow a class to extend two classes and if I implement separately, they will not communicate with each other. How can I work with both together? How do I resolve the SQLiteOpenHelper implementation problem? How can I use ORMLite with SQLCipher together in Android? It should be possible @Bruno. One way that should work is to just copy ORMLite's OrmLiteSqliteOpenHelper class into your project, rename it to LocalOrmLiteSqliteOpenHelper or