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
Version 0.1.0
Created 08 October 2020.
Automated builds of OpenSSL and SqlCipher, 64 bit only, for Windows and Linux build hosts. Multiple target hosts including Android, VStudio, mingw, Linux.
Using the plugins DSL:
plugins {
id("com.oldguy.gradle.sqlcipher-openssl-build") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.oldguy.gradle:GradleSqlCipher:0.1.0")
}
}
apply(plugin = "com.oldguy.gradle.sqlcipher-openssl-build")
Using the plugins DSL:
plugins {
id "com.oldguy.gradle.sqlcipher-openssl-build" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.oldguy.gradle:GradleSqlCipher:0.1.0"
}
}
apply plugin: "com.oldguy.gradle.sqlcipher-openssl-build"