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 1.0.7

1.0.7

Created 07 July 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("im.getsocial:plugin-v7:1.0.7")
      }
    }
    
    apply(plugin = "im.getsocial")
  • Applying plugins to all subprojects .