Search Gradle plugins

com.oldguy.gradle.sqlcipher-openssl-build

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.3.3

Created 21 January 2022.

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.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.oldguy.gradle:GradleSqlCipher:0.3.3")
  }
}

apply(plugin = "com.oldguy.gradle.sqlcipher-openssl-build")

Using the plugins DSL:

plugins {
  id "com.oldguy.gradle.sqlcipher-openssl-build" version "0.3.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.oldguy.gradle:GradleSqlCipher:0.3.3"
  }
}

apply plugin: "com.oldguy.gradle.sqlcipher-openssl-build"

Learn how to apply plugins to subprojects