expo-observe 0.1.8 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
|
@@ -62,7 +62,7 @@ dependencies {
|
|
|
62
62
|
implementation project(':expo-updates-interface')
|
|
63
63
|
implementation "com.facebook.react:react-android"
|
|
64
64
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0"
|
|
65
|
-
implementation "com.squareup.okhttp3:okhttp:
|
|
65
|
+
implementation "com.squareup.okhttp3:okhttp:4.9.2"
|
|
66
66
|
// This is a workaround for IDE warning - https://youtrack.jetbrains.com/issue/KTIJ-31549
|
|
67
67
|
implementation "androidx.annotation:annotation-experimental:1.5.1"
|
|
68
68
|
|
|
@@ -76,7 +76,7 @@ dependencies {
|
|
|
76
76
|
testImplementation 'junit:junit:4.13.2'
|
|
77
77
|
testImplementation 'org.robolectric:robolectric:4.11.1'
|
|
78
78
|
testImplementation 'androidx.test:core:1.5.0'
|
|
79
|
-
testImplementation 'com.squareup.okhttp3:mockwebserver:
|
|
79
|
+
testImplementation 'com.squareup.okhttp3:mockwebserver:4.9.2'
|
|
80
80
|
testImplementation 'io.mockk:mockk:1.13.8'
|
|
81
81
|
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3'
|
|
82
82
|
}
|
|
@@ -73,7 +73,7 @@ class EventDispatcher(
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
val response = call.execute()
|
|
76
|
-
Log.d(TAG, "Server responded with: ${response.body
|
|
76
|
+
Log.d(TAG, "Server responded with: ${response.body?.string()}")
|
|
77
77
|
|
|
78
78
|
continuation.resume(response.code in 200..299)
|
|
79
79
|
} catch (e: Exception) {
|
package/package.json
CHANGED