2022-01-22 17:54:06 +00:00
|
|
|
buildscript {
|
2022-02-16 12:49:47 +00:00
|
|
|
ext {
|
2022-08-03 20:46:38 +03:00
|
|
|
compose_version = '1.2.0-beta02'
|
2022-02-16 12:49:47 +00:00
|
|
|
}
|
2022-01-22 17:54:06 +00:00
|
|
|
repositories {
|
|
|
|
|
google()
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
dependencies {
|
2022-05-20 12:56:27 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:7.2.0'
|
2022-08-03 20:46:38 +03:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
|
2022-02-16 12:49:47 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:1.3.2"
|
2022-01-22 17:54:06 +00:00
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
|
}
|
2022-02-16 12:49:47 +00:00
|
|
|
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
plugins {
|
2022-05-20 12:56:27 +01:00
|
|
|
id 'com.android.application' version '7.2.0' apply false
|
|
|
|
|
id 'com.android.library' version '7.2.0' apply false
|
2022-08-03 20:46:38 +03:00
|
|
|
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
|
|
|
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.21'
|
2022-01-22 17:54:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|