Search Gradle plugins

Version 2.0.0

Created 04 February 2023.

Ensure Android runtime permissions using annotations only.

Using the plugins DSL:

plugins {
  id("com.likethesalad.aaper") version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.likethesalad.android:aaper-plugin:2.0.0")
  }
}

apply(plugin = "com.likethesalad.aaper")

Using the plugins DSL:

plugins {
  id "com.likethesalad.aaper" version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.likethesalad.android:aaper-plugin:2.0.0"
  }
}

apply plugin: "com.likethesalad.aaper"

Learn how to apply plugins to subprojects