advplyr.audiobookshelf-app/android/build.gradle

33 lines
750 B
Groovy
Raw Permalink Normal View History

2021-09-01 20:07:11 -05:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '2.0.0'
2021-09-01 20:07:11 -05:00
repositories {
google()
mavenCentral()
2021-09-01 20:07:11 -05:00
}
dependencies {
classpath 'com.google.gms:google-services:4.4.2'
classpath 'com.android.tools.build:gradle:8.8.2'
2021-09-01 20:07:11 -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
}
}
apply from: "variables.gradle"
allprojects {
repositories {
google()
mavenCentral()
2021-09-01 20:07:11 -05:00
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
2021-09-01 20:07:11 -05:00
}