You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext{
|
|
|
|
kotlin_version = '1.8.0'
|
|
|
|
compose_version = '1.3.0-rc01'
|
|
|
|
compose_compiler_version = '1.3.2'
|
|
|
|
agp_version = '7.4.0'
|
|
|
|
exoplayer_version = '2.18.2'
|
|
|
|
splitties_version = '3.0.0'
|
|
|
|
room_version = '2.5.0'
|
|
|
|
compile_sdk_version = 33
|
|
|
|
build_tool_version = '33.0.1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|