We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 874e10e commit 5e87349Copy full SHA for 5e87349
android-database-sqlcipher/native.gradle
@@ -14,6 +14,10 @@ task buildOpenSSL () {
14
}
15
16
task buildAmalgamation () {
17
+ onlyIf {
18
+ def amalgamation = new File("${projectDir}/src/main/external/sqlcipher/sqlite3.c")
19
+ return !amalgamation.exists()
20
+ }
21
doLast {
22
exec {
23
workingDir "${projectDir}/src/main/external/sqlcipher"
0 commit comments