@forstaglobal/react-native-mobilesdk 3.15.0 → 4.0.0
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/README.md +3 -3
- package/android/build.gradle +1 -1
- package/ios/Podfile +1 -1
- package/package.json +2 -2
- package/react-native-mobilesdk.podspec +1 -1
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ Add the SDK dependency to the application level `build.gradle` file.
|
|
|
41
41
|
// build.gradle (Module)
|
|
42
42
|
dependencies {
|
|
43
43
|
...
|
|
44
|
-
implementation 'com.confirmit.mobilesdk:mobilesdk:
|
|
44
|
+
implementation 'com.confirmit.mobilesdk:mobilesdk:4.0.0'
|
|
45
45
|
}
|
|
46
46
|
```
|
|
47
47
|
|
|
@@ -83,7 +83,7 @@ import PackageDescription
|
|
|
83
83
|
let package = Package(
|
|
84
84
|
name: "<Your Product Name>",
|
|
85
85
|
dependencies: [
|
|
86
|
-
.package(url: "https://github.com/ForstaGlobal/DigitalFeedbackMobileSDK.git", .upToNextMajor(from: "
|
|
86
|
+
.package(url: "https://github.com/ForstaGlobal/DigitalFeedbackMobileSDK.git", .upToNextMajor(from: "4.0.0"))
|
|
87
87
|
],
|
|
88
88
|
targets: [
|
|
89
89
|
.target(
|
|
@@ -108,7 +108,7 @@ platform :ios, '11.0'
|
|
|
108
108
|
# Your target
|
|
109
109
|
target 'MyApp' do
|
|
110
110
|
# ... others pods
|
|
111
|
-
pod 'ConfirmitMobileSDK', '
|
|
111
|
+
pod 'ConfirmitMobileSDK', '4.0.0'
|
|
112
112
|
end
|
|
113
113
|
```
|
|
114
114
|
|
package/android/build.gradle
CHANGED
|
@@ -97,7 +97,7 @@ dependencies {
|
|
|
97
97
|
//noinspection GradleDynamicVersion
|
|
98
98
|
implementation "com.facebook.react:react-native:+"
|
|
99
99
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
100
|
-
implementation 'com.confirmit.mobilesdk:mobilesdk:
|
|
100
|
+
implementation 'com.confirmit.mobilesdk:mobilesdk:4.0.0'
|
|
101
101
|
implementation project(path: ':react-native-webview')
|
|
102
102
|
}
|
|
103
103
|
|
package/ios/Podfile
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forstaglobal/react-native-mobilesdk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "The Forsta Digital Feedback Mobile SDK provides seamless in-app feedback for any touch point within your mobile application.",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"prettier": "2.8.8",
|
|
79
79
|
"react": "18.2.0",
|
|
80
80
|
"react-native": "0.74.1",
|
|
81
|
-
"react-native-builder-bob": "^0.
|
|
81
|
+
"react-native-builder-bob": "^0.21.3",
|
|
82
82
|
"release-it": "^15.0.0",
|
|
83
83
|
"turbo": "^1.10.7",
|
|
84
84
|
"typescript": "5.0.4"
|