Skip to content

yechaoa/GradleX

Repository files navigation

GradleX

环境(Environments)

  • Android Studio Giraffe | 2022.3.1 Patch 1
  • Android Gradle Plugin 8.1.1
  • JDK 17

系列博客(Blog)

插件功能(Feature)

  • 打印依赖树
  • SNAPSHOT版本检查
  • 打印so文件和依赖的关系

插件使用(Usage)

step 1. Add the JitPack repository to your build file

repositories {
	...
	maven { url 'https://jitpack.io' }
}

step 2. Add the dependency

dependencies {
    classpath('com.github.yechaoa.GradleX:plugin:1.5')
}

step 3. Add the Plugin Id to your build file and configure the gradleX{ } dsl

plugins {
    id 'com.yechaoa.plugin.gradleX'
}

gradleX {
    printDependencies = false
    analysisSo = true
    checkSnapshot = true
    blockSnapshot = false
}