forked from gedoor/legado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
27 lines (24 loc) · 898 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
compile_sdk_version = 33
build_tool_version = '33.0.1'
kotlin_version = '1.9.0'
ksp_version="1.0.12"
agp_version = '8.1.0'
media3_version = "1.1.0"
splitties_version = '3.0.0'
room_version = '2.5.2'
}
}
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 'com.google.devtools.ksp' version "$kotlin_version-$ksp_version" apply false
id "de.undercouch.download" version "5.4.0" apply false
id "com.google.gms.google-services" version "4.3.15" apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}