I am adding database functionality to an Android phone/tablet application with the requirement that the database be encrypted. I have researched several options and am currently considering SQLCipher.
My one concern is that SQLCipher uses native code. I see that it includes native libraries in the following directories:
- libs/armeabi
- libs/x86
I believe this means that it will run only on ARM and X86 processor systems. (Please correct me if I am wrong)
So if the app supports only these 2 architectures, does that exclude many devices? My understanding is that the vast majority of mobile devices use ARM processors. Is this accurate?