You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
559B

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext.kotlin_version = '1.7.10'
  4. repositories {
  5. mavenCentral()
  6. }
  7. dependencies {
  8. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  9. }
  10. }
  11. plugins {
  12. id 'com.android.application' version '7.2.1' apply false
  13. id 'com.android.library' version '7.2.1' apply false
  14. id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
  15. }
  16. task clean(type: Delete) {
  17. delete rootProject.buildDir
  18. }