We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cec41b9 commit b630882Copy full SHA for b630882
2 files changed
.gitignore
@@ -7,4 +7,8 @@ android-database-sqlcipher/src/main/external/android-libs/
7
android-database-sqlcipher/.externalNativeBuild/
8
android-database-sqlcipher/src/main/libs*
9
android-database-sqlcipher/src/main/obj
10
-android-database-sqlcipher/src/main/external/openssl-*/
+android-database-sqlcipher/src/main/external/openssl-*/
11
+
12
+local.properties
13
+*.iml
14
+.idea
android-database-sqlcipher/native.gradle
@@ -1,6 +1,9 @@
1
task buildOpenSSL () {
2
onlyIf {
3
def armNativeFile = new File("${androidNativeRootDir}/armeabi/libcrypto.a")
4
+ if (armNativeFile.exists()) {
5
+ println ("${androidNativeRootDir}/armeabi/libcrypto.a exists nothing to do")
6
+ }
return !armNativeFile.exists()
}
doLast {
0 commit comments