File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ android {
1212 versionName " ${ rootProject.ext.libraryVersion} "
1313 project. archivesBaseName = " sqlcipher-android-${ versionName} "
1414 testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
15+ consumerProguardFile ' consumer-rules.pro'
1516 }
1617
1718 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