-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
44 lines (40 loc) · 1.2 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
ext {
// Android
android_compile_sdk_version = 33
android_min_sdk_version = 23
android_target_sdk_version = 33
android_version_code = 9
android_version_name = "1.0.0"
// Dependencies
paging = "3.1.1"
retrofit_version = "2.9.0"
androidx_core = "1.8.0"
hilt_version = "2.42"
fragment_version = "1.5.1"
paging = "3.1.1"
coroutines_version = "1.6.4"
joda = "2.10.13"
markwon_version = "4.6.2"
}
dependencies {
// hilt
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "com.android.tools.build:gradle:7.0.0"
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.1' apply false
id 'com.android.library' version '7.2.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'org.jlleitschuh.gradle.ktlint' version "11.0.0" apply true
}
allprojects {
apply {
plugin 'org.jlleitschuh.gradle.ktlint'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}