build.gradle 458 B

123456789101112131415161718
  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.2.0'
  5. kotlin_version = '1.7.0'
  6. }
  7. }
  8. plugins {
  9. id 'com.android.application' version '7.2.0' apply false
  10. id 'com.android.library' version '7.2.0' apply false
  11. id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
  12. }
  13. task clean(type: Delete) {
  14. delete rootProject.buildDir
  15. }