File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed
src/main/kotlin/org/wordpress/aztec Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,6 @@ android {
2929 includeAndroidResources = true
3030 }
3131 }
32-
33- // enable kotlin coroutines
34- kotlin { experimental { coroutines " enable" } }
3532}
3633
3734dependencies {
@@ -48,6 +45,6 @@ dependencies {
4845 testImplementation " junit:junit:$jUnitVersion "
4946 testImplementation " org.robolectric:robolectric:$robolectricVersion "
5047
51- implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-core:0.26.1 '
52- implementation ' org.jetbrains.kotlinx:kotlinx-coroutines-android:0.26.1 '
48+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:$k otlinCoroutinesVersion "
49+ implementation " org.jetbrains.kotlinx:kotlinx-coroutines-android:$k otlinCoroutinesVersion "
5350}
Original file line number Diff line number Diff line change @@ -55,10 +55,9 @@ import android.view.WindowManager
5555import android.view.inputmethod.BaseInputConnection
5656import android.widget.CheckBox
5757import android.widget.EditText
58- import kotlinx.coroutines.experimental.Dispatchers
59- import kotlinx.coroutines.experimental.android.Main
60- import kotlinx.coroutines.experimental.runBlocking
61- import kotlinx.coroutines.experimental.withContext
58+ import kotlinx.coroutines.Dispatchers
59+ import kotlinx.coroutines.runBlocking
60+ import kotlinx.coroutines.withContext
6261import org.wordpress.android.util.AppLog
6362import org.wordpress.android.util.ImageUtils
6463import org.wordpress.aztec.formatting.BlockFormatter
Original file line number Diff line number Diff line change 11buildscript {
22 ext {
33 gradlePluginVersion = ' 3.1.3'
4- kotlinVersion = ' 1.2.41'
4+ kotlinVersion = ' 1.3.11'
5+ kotlinCoroutinesVersion = ' 1.1.0'
56 supportLibVersion = ' 27.1.1'
67 tagSoupVersion = ' 1.2.1'
78 glideVersion = ' 3.7.0'
You can’t perform that action at this time.
0 commit comments