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.2-SNAPSHOT (latest)

Created 16 August 2021.

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.2-SNAPSHOT"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.gamechangesns.saleskey"

Learn how to apply plugins to subprojects