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

Created 08 June 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.ankitahuja0508:com.github.ankitahuja0508.gradle.plugin:1.1.7")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.ankitahuja0508")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.ankitahuja0508:com.github.ankitahuja0508.gradle.plugin:1.1.7")
      }
    }
    
    apply(plugin = "com.github.ankitahuja0508")
  • Applying plugins to all subprojects .