From 80ae4f058953b67c00c05251d7a06b34044e957b Mon Sep 17 00:00:00 2001 From: Fabian Frank Date: Sun, 17 Aug 2014 21:11:21 -0700 Subject: [PATCH] Show how to configure proguard for SQLCipher This helps folks that proguard their app, as it's often customary to have the necessary rules in the library's proguard-project.txt so they can be copied form there (instead of guesstimated). --- proguard-project.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/proguard-project.txt b/proguard-project.txt index f2fe1559..17f34e76 100644 --- a/proguard-project.txt +++ b/proguard-project.txt @@ -18,3 +18,8 @@ #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} + +# SQLCipher, keep JNI integration methods +-keepclassmembers class net.sqlcipher.** { + native ; +}