We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666e050 commit 8bc8391Copy full SHA for 8bc8391
android-database-sqlcipher/native.gradle
@@ -74,6 +74,10 @@ task cleanSQLCipher() {
74
doLast {
75
logger.info "Cleaning SQLCipher source"
76
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()
81
}
82
83
0 commit comments