OSDN Git Service

バージョンを更新。
[gokigen/JoggingTimer.git] / build.gradle
1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
2
3 buildscript {
4     
5     ext {
6         kotlin_version = '1.8.20'
7     }
8     repositories {
9         google()
10         mavenCentral()
11     }
12     dependencies {
13         classpath 'com.android.tools.build:gradle:8.1.0'
14         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
15
16         // NOTE: Do not place your application dependencies here; they belong
17         // in the individual module build.gradle files
18     }
19 }
20
21 allprojects {
22     repositories {
23         google()
24         mavenCentral()
25     }
26 }
27
28 task clean(type: Delete) {
29     delete rootProject.buildDir
30 }