pushdeer/android/build.gradle

19 lines
486 B
Groovy
Raw Normal View History

2022-01-16 21:52:21 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_version = '1.0.5'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
2022-01-16 21:52:21 +08:00
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}