build.gradle 428 B

1234567891011121314151617
  1. buildscript {
  2. ext {
  3. androidPluginVersion = '7.3.0'
  4. kotlinLanguageVersion = '1.7.10'
  5. composeCompilerVersion = '1.3.1'
  6. composeLibraryVersion = '1.2.1'
  7. }
  8. }
  9. plugins {
  10. id 'com.android.application' version "$androidPluginVersion" apply false
  11. id 'org.jetbrains.kotlin.android' version "$kotlinLanguageVersion" apply false
  12. }
  13. task clean(type: Delete) {
  14. delete rootProject.buildDir
  15. }