-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (39 loc) · 1 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
buildscript {
ext {
config = [
'version_code': 1,
'version_name': "1.0.0",
'compile_sdk' : 33,
'min_sdk' : 22,
'target_sdk' : 33
]
// compose_version = '1.3.0'
nav_version = '2.5.3'
androidx_lifecycle = '2.6.1'
core_ktx = '1.10.1'
kotlin_version = '1.7.20'
markwon = '4.6.2'
prism4j = '2.0.0'
room_version = '2.4.3'
}
repositories {
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
}
}
allprojects {
repositories {
mavenCentral()
google()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}