Skip to content

Commit b630882

Browse files
committed
open with Android Studio
1 parent cec41b9 commit b630882

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ android-database-sqlcipher/src/main/external/android-libs/
77
android-database-sqlcipher/.externalNativeBuild/
88
android-database-sqlcipher/src/main/libs*
99
android-database-sqlcipher/src/main/obj
10-
android-database-sqlcipher/src/main/external/openssl-*/
10+
android-database-sqlcipher/src/main/external/openssl-*/
11+
12+
local.properties
13+
*.iml
14+
.idea

android-database-sqlcipher/native.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
task buildOpenSSL () {
22
onlyIf {
33
def armNativeFile = new File("${androidNativeRootDir}/armeabi/libcrypto.a")
4+
if (armNativeFile.exists()) {
5+
println ("${androidNativeRootDir}/armeabi/libcrypto.a exists nothing to do")
6+
}
47
return !armNativeFile.exists()
58
}
69
doLast {

0 commit comments

Comments
 (0)