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

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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.gamechangesns:saleskey:1.1-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.gamechangesns.saleskey")
  • Applying plugins to all subprojects .