File tree 2 files changed +19
-0
lines changed 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ android {
12
12
versionName " ${ rootProject.ext.libraryVersion} "
13
13
project. archivesBaseName = " sqlcipher-android-${ versionName} "
14
14
testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
15
+ consumerProguardFile ' consumer-rules.pro'
15
16
}
16
17
17
18
buildTypes {
Original file line number Diff line number Diff line change
1
+ -keep class net.zetetic.** {
2
+ native <methods>;
3
+ private native <methods>;
4
+ public <init>(...);
5
+ long mNativeHandle;
6
+ }
7
+
8
+ -keepclassmembers class net.zetetic.database.sqlcipher.SQLiteCustomFunction {
9
+ public java.lang.String name;
10
+ public int numArgs;
11
+ private void dispatchCallback(java.lang.String[]);
12
+ }
13
+
14
+ -keepclassmembers class net.zetetic.database.sqlcipher.SQLiteDebug$PagerStats {
15
+ public int largestMemAlloc;
16
+ public int memoryUsed;
17
+ public int pageCacheOverflow;
18
+ }
You can’t perform that action at this time.
0 commit comments