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.0.7

1.0.7

Created 29 May 2021.

This plugin contains most general dependencies that can be used in an AndroidProject without retrofit andf Hilt

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.github.ankitahuja0508"

Learn how to apply plugins to subprojects