I have an android application which currently uses SQLite.
There are some libraries which use SQLite and store the data.
I would like to use Sqlcipher for storing some confidential info inside the app.
Will the libraries be able to use the SQLite without any issues and I would use Sqlcipher for only this particular scenario?
As per https://www.zetetic.net/sqlcipher/design/
Under packaging its quite confusing where it says sqlcipher uses its own SQLite module etc, what if the library upgrades to a SQLite version will it create a conflict between sqlcipher’s SQLite version and the libraries version?