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