-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (29 loc) · 889 Bytes
/
build.gradle
File metadata and controls
38 lines (29 loc) · 889 Bytes
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
}
group 'io.stacrypt'
version '0.1.5'
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
// Kotlin
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2'
// Gson
implementation 'com.google.code.gson:gson:2.8.5'
// OkHttp
implementation 'com.squareup.okhttp3:okhttp:4.3.1'
implementation 'com.squareup.okhttp3:logging-interceptor:4.3.1'
// Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.7.1'
implementation 'com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:0.9.2'
implementation 'com.squareup.retrofit2:converter-gson:2.7.1'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}