im.getsocial
Owner:
Gabor Vass
GetSocial SDK Gradle plugin adds all required project dependencies and AndroidManifest.xml configurations.
Version 0.0.20
Created 28 January 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.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("im.getsocial:plugin:0.0.20")
}
}
apply(plugin = "im.getsocial")
Using the plugins DSL:
plugins {
id "im.getsocial" version "0.0.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "im.getsocial:plugin:0.0.20"
}
}
apply plugin: "im.getsocial"