Skip to content

Commit 8bc8391

Browse files
Remove amalgamation during SQLCipher clean phase
1 parent 666e050 commit 8bc8391

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

android-database-sqlcipher/native.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ task cleanSQLCipher() {
7474
doLast {
7575
logger.info "Cleaning SQLCipher source"
7676
gitClean("${sqlcipherDir}")
77+
File amalgamationSource = new File("${sqlcipherDir}/sqlite3.c")
78+
File amalgamationHeader = new File("${sqlcipherDir}/sqlite3.h")
79+
if(amalgamationSource.exists()) amalgamationSource.delete()
80+
if(amalgamationHeader.exists()) amalgamationHeader.delete()
7781
}
7882
}
7983

0 commit comments

Comments
 (0)