build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. apply from: "libversion.gradle"
  3. buildscript {
  4. // ext.kotlin_version = '1.4.0-rc'
  5. // ext.kotlin_version = "1.3.72"
  6. ext.kotlin_version = '1.5.0'
  7. ext.hilt_version = '2.29.1-alpha'
  8. repositories {
  9. google()
  10. jcenter()
  11. }
  12. dependencies {
  13. classpath 'com.android.tools.build:gradle:4.2.1'
  14. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  15. // NOTE: Do not place your application dependencies here; they belong
  16. // in the individual module build.gradle files
  17. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'//动态获取权限
  18. }
  19. }
  20. allprojects {
  21. repositories {
  22. google()
  23. jcenter()
  24. maven { url "https://jitpack.io" }
  25. flatDir {
  26. dirs project(':base').file('libs')
  27. dirs project(':basekt').file('libs')
  28. dirs project(':app').file('libs')
  29. }
  30. }
  31. }
  32. task clean(type: Delete) {
  33. delete rootProject.buildDir
  34. }