im.getsocial
Owner: Gabor Vass
GetSocial SDK Gradle plugin adds all required project dependencies and AndroidManifest.xml configurations.
Sources: https://bitbucket.org/getsocial/gradle-plugin.git
Version 0.0.21
0.0.21
Created 04 February 2020.
GetSocial SDK Gradle plugin adds all required project dependencies and AndroidManifest.xml configurations.
Using the plugins DSL:
plugins {
id("im.getsocial") version "0.0.21"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("im.getsocial:plugin:0.0.21")
}
}
apply(plugin = "im.getsocial")
Using the plugins DSL:
plugins {
id "im.getsocial" version "0.0.21"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "im.getsocial:plugin:0.0.21"
}
}
apply plugin: "im.getsocial"