Skip to content

Commit a05b38f

Browse files
committed
add buildType for release w/o x86 (32 bit)
1 parent 10e605a commit a05b38f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

sqlcipher/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ android {
2020
minifyEnabled false
2121
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2222
}
23+
releaseNoX86 {
24+
minifyEnabled false
25+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
26+
ndk {
27+
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64'
28+
}
29+
}
2330
debug {
2431
minifyEnabled false
2532
debuggable true

0 commit comments

Comments
 (0)