Search Gradle plugins

com.gamechangesns.saleskey

This plugin automatically adds commonly used dependencies like Retrofit(for Network Call), Glide(for Image Rendering), Firebase(for Cloud Messaging), Recyclerview, CardView, ConstraintLayout etc. It also enable dabtaBinding and Java 8.

http://gamechangesns.com/

Sources: https://github.com/gcsns/saleskey-android

Version 1.1-SNAPSHOT

Created 24 October 2020.

This plugin automatically adds commonly used dependencies like Retrofit(for Network Call), Glide(for Image Rendering), Firebase(for Cloud Messaging), Recyclerview, CardView, ConstraintLayout etc. It also enable dabtaBinding and Java 8.

Using the plugins DSL:

plugins {
  id("com.gamechangesns.saleskey") version "1.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gamechangesns:saleskey:1.1-SNAPSHOT")
  }
}

apply(plugin = "com.gamechangesns.saleskey")

Using the plugins DSL:

plugins {
  id "com.gamechangesns.saleskey" version "1.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gamechangesns:saleskey:1.1-SNAPSHOT"
  }
}

apply plugin: "com.gamechangesns.saleskey"

Learn how to apply plugins to subprojects