build.gradle 577 B

123456789101112131415161718192021
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. compose_version = '1.0.0'
  5. }
  6. repositories {
  7. google()
  8. mavenCentral()
  9. }
  10. dependencies {
  11. classpath "com.android.tools.build:gradle:7.0.0"
  12. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10"
  13. // NOTE: Do not place your application dependencies here; they belong
  14. // in the individual module build.gradle files
  15. }
  16. }
  17. task clean(type: Delete) {
  18. delete rootProject.buildDir
  19. }