// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.6.1' // classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.10' } } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir } // 统一编译版本 ext.versions = [ // Project minSdk : 24, compileSdk : 29, targetSdk : 29, buildTools : '29.0.2', ]