build.gradle 565 B

123456789101112131415161718
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. mavenCentral()
  6. maven { url 'https://repo1.maven.org/maven2/' }
  7. }
  8. dependencies {
  9. classpath "com.android.tools.build:gradle:7.0.4"
  10. classpath 'com.github.kezong:fat-aar:1.3.8'
  11. // NOTE: Do not place your application dependencies here; they belong
  12. // in the individual module build.gradle files
  13. }
  14. }
  15. task clean(type: Delete) {
  16. delete rootProject.buildDir
  17. }