allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.10'
}
dependencies {
implementation 'com.github.larboy1991:AopPermission:0.0.2'
}
plugins {
...
id 'com.hujiang.android-aspectjx'
}
//在项目的build.gradle里面需要添加扫描的目录
aspectjx {
include 'com.zhz.library.aop.permission'
include '自己的项目包名'
}
参考app里面的demo