p2play-app-android/build.gradle

27 lines
653 B
Groovy
Raw Permalink Normal View History

2018-08-18 07:04:31 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2024-03-28 03:54:14 +01:00
ext.kotlin_version = '1.6.21'
2018-08-18 07:04:31 +02:00
repositories {
google()
2024-03-19 01:45:04 +01:00
mavenCentral()
2018-08-18 07:04:31 +02:00
}
dependencies {
2024-04-16 06:07:14 +02:00
classpath 'com.android.tools.build:gradle:8.3.2'
2018-08-18 07:04:31 +02: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 01:45:04 +01:00
mavenCentral()
2018-08-18 07:04:31 +02:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}