react-native-gizwits-sdk-v5 1.3.52 → 1.3.54
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
|
@@ -63,10 +63,10 @@ dependencies {
|
|
|
63
63
|
|
|
64
64
|
implementation "androidx.startup:startup-runtime:$startup_version"
|
|
65
65
|
|
|
66
|
-
implementation("io.github.gizwits:sdk:1.0.
|
|
67
|
-
implementation("io.github.gizwits:sdk-bluetooth:1.0.
|
|
68
|
-
implementation("io.github.gizwits:sdk-lan:1.0.
|
|
69
|
-
implementation("io.github.gizwits:sdk-mqtt:1.0.
|
|
66
|
+
implementation("io.github.gizwits:sdk:1.0.42")
|
|
67
|
+
implementation("io.github.gizwits:sdk-bluetooth:1.0.42")
|
|
68
|
+
implementation("io.github.gizwits:sdk-lan:1.0.42")
|
|
69
|
+
implementation("io.github.gizwits:sdk-mqtt:1.0.42")
|
|
70
70
|
|
|
71
71
|
// implementation files('libs/sdk-release.aar', 'libs/sdk-bluetooth-release.aar', 'libs/sdk-lan-release.aar', 'libs/sdk-mqtt-release.aar')
|
|
72
72
|
|
|
@@ -111,7 +111,7 @@ class RNGizSDKManagerModule: RCTEventEmitter, GizSdkEventHandlerDelegate {
|
|
|
111
111
|
public func feedback(_ options: NSDictionary, result: @escaping RCTResponseSenderBlock) {
|
|
112
112
|
if let config = RNGizParamsChecker.check(options: options, result: result, paramsType: GizFeedbackParams.self) {
|
|
113
113
|
Task {
|
|
114
|
-
GizSDKManager.sharedInstance.feedback(uploadLog: config.uploadLog,
|
|
114
|
+
await GizSDKManager.sharedInstance.feedback(uploadLog: config.uploadLog, contact: config.contact, content: config.content)
|
|
115
115
|
GizRNCallbackManager.callbackWithResult(callback: result, result: GizResult<Int?, GizAPIException?>(data: nil, success: true))
|
|
116
116
|
}
|
|
117
117
|
|
package/package.json
CHANGED