Search Gradle plugins

im.getsocial

GetSocial SDK Gradle plugin adds all required project dependencies and AndroidManifest.xml configurations.

https://docs.getsocial.im/

Sources: https://bitbucket.org/getsocial/gradle-plugin.git

Version 0.0.7

Created 04 February 2019.

GetSocial SDK Gradle plugin adds all required project dependencies and AndroidManifest.xml configurations.

Using the plugins DSL:

plugins {
  id("im.getsocial") version "0.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("im.getsocial:plugin:0.0.7")
  }
}

apply(plugin = "im.getsocial")

Using the plugins DSL:

plugins {
  id "im.getsocial" version "0.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "im.getsocial:plugin:0.0.7"
  }
}

apply plugin: "im.getsocial"

Learn how to apply plugins to subprojects