legado/build.gradle

26 lines
782 B
Groovy
Raw Permalink 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{
2023-02-19 19:47:58 +08:00
compile_sdk_version = 33
build_tool_version = '33.0.1'
2023-01-02 22:13:47 +08:00
kotlin_version = '1.8.0'
2023-02-28 22:19:14 +08:00
agp_version = '7.4.2'
2023-03-07 23:31:49 +08:00
exoplayer_version = '2.18.4'
splitties_version = '3.0.0'
2023-01-28 11:50:58 +08:00
room_version = '2.5.0'
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.2.1" 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
}