We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cb76502 + 0b7209f commit fca8b84Copy full SHA for fca8b84
1 file changed
sqlcipher/build-java.gradle
@@ -322,7 +322,8 @@ binaries.withType(SharedLibraryBinary) { binary ->
322
// Jar libsqlcipher library:
323
// workaround to avoid dupicated libsqlcipher.so
324
// see: https://github.com/couchbase/couchbase-lite-java-core/issues/1185
325
- if (binaryName.startsWith("libcbljavasqlcipher")) {
+ // Windows: no libxxxx
326
+ if (binaryName.indexOf("cbljavasqlcipher") != -1) {
327
jar.into("native/${os}/${arch}") {
328
def libPath;
329
def libName = os == 'windows' ? "sqlcipher.dll" : (os == 'osx' ? "libsqlcipher.dylib" : "libsqlcipher.so")
0 commit comments