p2play-app-android/build.gradle

27 lines
660 B
Groovy
Raw Normal View History

2018-08-18 00:04:31 -05:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2024-05-26 21:47:25 +00:00
ext.kotlin_version = '1.9.20'
2018-08-18 00:04:31 -05:00
repositories {
google()
2024-03-19 00:45:04 +00:00
mavenCentral()
2018-08-18 00:04:31 -05:00
}
dependencies {
2024-04-15 22:07:14 -06:00
classpath 'com.android.tools.build:gradle:8.3.2'
2018-08-18 00:04:31 -05:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
2024-03-19 00:45:04 +00:00
mavenCentral()
2018-08-18 00:04:31 -05:00
}
}
2024-06-05 12:28:06 -06:00
tasks.register('clean', Delete) {
2018-08-18 00:04:31 -05:00
delete rootProject.buildDir
}