nextpush-android/build.gradle

27 lines
695 B
Groovy
Raw Normal View History

2021-11-22 09:27:58 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2022-09-20 00:26:28 +02:00
ext.kotlin_version = "1.7.10"
2021-11-22 09:27:58 +01:00
repositories {
google()
mavenCentral()
}
dependencies {
2022-09-20 00:26:28 +02:00
classpath 'com.android.tools.build:gradle:7.3.0'
2021-11-22 09:27:58 +01: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()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}