0

I was trying to encrypt my app database following this tutorial here encrypt sqlite database Android: I downloaded SQLCipher zip file but i can't find jar files inside it. i only see .so and assets folder. should i compil them using gradle or what ?. i'm not familliare with gradle yet. and i'm using eclipse and a genymotion emulator (Android 4.4.4 API 19).

Community
  • 1
  • 1
SaidTagnit
  • 115
  • 3
  • 14
  • Eclipse doesn't do Gradle and is officially unsupported for Android development - it is strongly encouraged to use Android Studio – OneCricketeer Jan 11 '16 at 13:40
  • Besides that, did you try searching for "sqlcipher jar"? First link... https://www.zetetic.net/sqlcipher/sqlcipher-for-android/ – OneCricketeer Jan 11 '16 at 13:43
  • @cricket_007 yes i looked for it but can't find it in the zip file. i know eclipse is officially unsupported but i feel more cumfortable using it.i downloaded android studio recently and i will start using it soon. – SaidTagnit Jan 11 '16 at 14:23
  • According to the link you posted, there is no jar **in the zip** the instructions were pretty clear you needed to extract the assets and stuff directly into your project. The link I sent says how to actually make a Jar from the zip – OneCricketeer Jan 11 '16 at 14:34
  • Yes i can see them now under Building section on that page thank you . I already got jar files from the app example mozarty sent. Thank you for mentioning this. – SaidTagnit Jan 11 '16 at 14:42

1 Answers1

1

you can use the sqlcipher example here to find the .so and the .jar

https://github.com/guardianproject/notecipher

I am not sure which version are you looking for

Ahmed Salem
  • 3,947
  • 1
  • 21
  • 40