搜索 Gradle 插件

版本 3.0.0 (最新版)

3.0.0

创建日期:2024年1月2日。

仅使用注解确保 Android 运行时权限。

使用 插件 DSL

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

使用 旧插件应用程序

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

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

使用 插件 DSL

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

使用 旧插件应用程序

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

apply plugin: "com.likethesalad.aaper"

学习如何将插件应用于子项目