com.oldguy.gradle.sqlcipher-openssl-build
Owner: Steven K Olson
Automated builds of OpenSSL and SqlCipher, 64 bit only, for Windows and Linux build hosts. Multiple target hosts including Android, VStudio, mingw, Linux.
https://github.com/skolson/sqlcipher-openssl-build
Sources: https://github.com/skolson/sqlcipher-openssl-build.git
Version 0.4.0 (latest)
0.4.0
Created 14 March 2024.
Automated builds of OpenSSL and SqlCipher, 64 bit only, for Windows, Linux and Mac build hosts. Multiple target hosts including Android, VStudio, mingw, Linux. Mac, IOS
Using the plugins DSL:
plugins {
id("com.oldguy.gradle.sqlcipher-openssl-build") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.oldguy.gradle:GradleSqlCipher:0.4.0")
}
}
apply(plugin = "com.oldguy.gradle.sqlcipher-openssl-build")
Using the plugins DSL:
plugins {
id "com.oldguy.gradle.sqlcipher-openssl-build" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.oldguy.gradle:GradleSqlCipher:0.4.0"
}
}
apply plugin: "com.oldguy.gradle.sqlcipher-openssl-build"