In fact, you should be very worried. It is very easy to get your database and even code without rooting your phone. Here is an example of how to do this:
- Download the ASTRO file manager.
- Use this option to backup the application to the SD card.
- Transfer the backup file to your computer.
- Use the Apk_OneClick tool (search the web) to decompile the application package.
Now you have everything, code, database, images, xml files, that's it!
So, I can tell you that in a few minutes you can have people codes and a database. To protect your application, use ProGuard and use some type of encryption for your database. Personally, I encrypt the data of each field and decrypt it at runtime, with simple encryption such as XOR, in fact it does not greatly reduce performance.
source share