Files
simplex-chat/apps/android/build.gradle

27 lines
916 B
Groovy
Raw Normal View History

2022-01-22 17:54:06 +00:00
buildscript {
ext {
compose_version = '1.2.0-beta02'
}
2022-01-22 17:54:06 +00:00
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
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
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
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
}