Search Gradle plugins

com.github.ankitahuja0508

This plugin contains most general dependencies that can be used in an AndroidProject

https://github.com/ankitahuja0508

Sources: https://github.com/ankitahuja0508/AndroidGradlePlugin.git

Version 1.1.2

1.1.2

Created 06 June 2021.

This plugin contains most general dependencies that can be used in an AndroidProject with retrofit. Added function to include retrofit.

Using the plugins DSL:

plugins {
  id("com.github.ankitahuja0508") version "1.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ankitahuja0508:AndroidPlugin:1.1.2")
  }
}

apply(plugin = "com.github.ankitahuja0508")

Using the plugins DSL:

plugins {
  id "com.github.ankitahuja0508" version "1.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ankitahuja0508:AndroidPlugin:1.1.2"
  }
}

apply plugin: "com.github.ankitahuja0508"

Learn how to apply plugins to subprojects