legado/build.gradle

26 lines
789 B
Groovy
Raw Normal View History

2022-01-03 23:59:44 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
2022-08-11 19:50:56 +08:00
kotlin_version = '1.7.10'
compose_version = '1.2.1'
compose_compiler_version = '1.3.0'
2022-10-14 08:24:57 +08:00
agp_version = '7.3.1'
2022-07-24 20:47:30 +08:00
exoplayer_version = '2.18.1'
splitties_version = '3.0.0'
2022-08-12 16:46:32 +08:00
room_version = '2.4.3'
2022-01-03 23:59:44 +08:00
}
}
plugins {
id 'com.android.application' version "$agp_version" apply false
id 'com.android.library' version "$agp_version" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id "de.undercouch.download" version "5.1.0" apply false
id "com.google.gms.google-services" version "4.3.10" apply false
2022-01-03 23:59:44 +08:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}