1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

Tech | Kotlin 1.5.0 & other library updates (#1447)

This commit is contained in:
Evgenii Kozlov 2021-05-14 22:50:27 +03:00 committed by GitHub
parent 68c4dfb609
commit f20e3b6f79
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 6 deletions

View file

@ -1,7 +1,7 @@
apply from: './dependencies.gradle'
buildscript {
ext.kotlin_version = '1.4.30'
ext.kotlin_version = '1.5.0'
ext.gradle_tools = '3.1.3'
ext.build_tools = '29.0.0'
ext.nav_version = '2.3.0'

View file

@ -7,7 +7,7 @@ allprojects {
ext {
// Kotlin
kotlin_coroutines_version = '1.4.3'
kotlin_coroutines_version = '1.5.0'
kotlinx_serialization_json_version = '1.0.0'
// AndroidX
@ -36,7 +36,7 @@ ext {
blurry_version = '3.0.0'
shimmer_layout_version = "0.5.0"
photo_view_version = '2.3.0'
dagger_version = '2.33'
dagger_version = '2.35.1'
javaxAnnotations_version = '1.0'
javaxInject_version = '1'
retrofit_version = '2.3.0'
@ -81,9 +81,9 @@ ext {
protoc_version = '3.9.0'
wire_version = '3.5.0'
// DB
// DBB
room_version = '2.2.0'
room_version = '2.3.0'
// Analytics

View file

@ -32,9 +32,11 @@ dependencies {
implementation applicationDependencies.kotlin
implementation applicationDependencies.coroutinesAndroid
implementation applicationDependencies.gson
implementation applicationDependencies.lifecycleLiveData
implementation databaseDependencies.room
implementation databaseDependencies.roomKtx
kapt databaseDependencies.annotations
implementation applicationDependencies.timber
@ -44,6 +46,6 @@ dependencies {
testImplementation unitTestDependencies.junit
testImplementation unitTestDependencies.kotlinTest
testImplementation unitTestDependencies.mockitoKotlin
testImplementation unitTestDependencies.robolectric
testImplementation unitTestDependencies.robolectricLatest
testImplementation unitTestDependencies.archCoreTesting
}