-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathdependencies.gradle
38 lines (32 loc) · 1.2 KB
/
dependencies.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
def versions = [
gradle : '4.0.1',
gson : "2.8.2",
junit : "4.12",
kotlin : "1.4.0",
smarttablayout : "1.6.0@aar",
support : "28.0.0",
]
def sdk = [
appCompat : "androidx.appcompat:appcompat:1.0.0",
design : "com.google.android.material:material:1.1.0-beta02",
]
def external = [
gson : "com.google.code.gson:gson:${versions.gson}",
smarttablayout : "com.ogaclejapan.smarttablayout:library:${versions.smarttablayout}",
]
def test = [
junit : "junit:junit:${versions.junit}"
]
def buildConfig = [
gradlePlugin : "com.android.tools.build:gradle:${versions.gradle}",
kotlinGradlePlugin : "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}",
kotlinStdLib : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}",
]
ext.config = [
"build": buildConfig,
]
ext.deps = [
"external" : external,
"sdk" : sdk,
"test" : test
]