tagworks-sdk-v1-react 1.1.5 → 1.1.7
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 +1 -1
- package/ios/TagWorksModule.swift +1 -1
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -100,6 +100,6 @@ dependencies {
|
|
|
100
100
|
implementation "com.facebook.react:react-native:+"
|
|
101
101
|
// implementation "com.facebook.react:react-android:0.71.0"
|
|
102
102
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
103
|
-
implementation "com.obzen.tagworks:tagworks-v1-kotlin:1.1.
|
|
103
|
+
implementation "com.obzen.tagworks:tagworks-v1-kotlin:1.1.19"
|
|
104
104
|
}
|
|
105
105
|
|
package/ios/TagWorksModule.swift
CHANGED
|
@@ -163,7 +163,7 @@ class TagWorksModule: NSObject, RCTBridgeModule {
|
|
|
163
163
|
@objc func getCommonDimensionWithDouble(_ index: Int, callback: @escaping RCTResponseSenderBlock) {
|
|
164
164
|
let dimension = TagWorks.sharedInstance.getCommonDimension(WithType: Dimension.factType, index: index)
|
|
165
165
|
if let dimension {
|
|
166
|
-
callback([dimension.
|
|
166
|
+
callback([dimension.numValue])
|
|
167
167
|
} else {
|
|
168
168
|
callback([])
|
|
169
169
|
}
|