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.10 (latest)

Created 09 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.10"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("im.getsocial:im.getsocial.gradle.plugin:1.0.10")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("im.getsocial")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("im.getsocial:im.getsocial.gradle.plugin:1.0.10")
      }
    }
    
    apply(plugin = "im.getsocial")
  • Applying plugins to all subprojects .