forked from 1312inc/Webasyst-X-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (49 loc) · 1.34 KB
/
build.gradle
File metadata and controls
52 lines (49 loc) · 1.34 KB
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
45
46
47
48
49
50
51
52
buildscript {
ext {
androidx_annotation_version = '1.1.0'
androidx_core_version = '1.6.0'
appcompat_version = '1.3.1'
build_tools_version = '30.0.2'
constraint_layout_version = '2.1.0'
coroutines_version = '1.5.0'
glide_version = '4.12.0'
koin_version = '2.2.3'
kotlin_version = '1.5.21'
ktor_version = '1.4.0'
lifecycle_version = '2.3.1'
material_version = '1.4.0'
nav_version = '2.3.5'
recyclerview_version = '1.2.1'
room_version = '2.3.0'
swipe_refresh_version = '1.1.0'
webasyst_version = '1.1.0-SNAPSHOT'
compile_sdk_version = 30
min_sdk_version = 16
target_sdk_version = 30
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
mavenLocal()
mavenCentral()
google()
maven { url "https://jitpack.io" }
maven {
url 'https://s01.oss.sonatype.org/content/groups/staging/'
content {
includeGroup 'com.webasyst'
}
mavenContent {
snapshotsOnly()
}
}
}
}