@linkforty/mobile-sdk-react-native 1.0.0 → 1.0.1
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/CHANGELOG.md +1 -0
- package/README.md +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -101,6 +101,7 @@ Uses the following LinkForty Core API endpoints:
|
|
|
101
101
|
|
|
102
102
|
### Changed
|
|
103
103
|
- Removed unused dependencies `@onamfc/developer-log` and `@onamfc/pkg-inspect` to reduce bundle size
|
|
104
|
+
- Broadened peer dependency support to React >=17.0.0 and React Native >=0.64.0 for wider compatibility
|
|
104
105
|
|
|
105
106
|
### Planned Features
|
|
106
107
|
- iOS SDK (Native Swift) - Q2 2025
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linkforty/mobile-sdk-react-native",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "React Native SDK for LinkForty - Open-source deep linking and mobile attribution platform",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"npm": ">=10.0.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"react": ">=
|
|
45
|
-
"react-native": ">=0.
|
|
44
|
+
"react": ">=17.0.0",
|
|
45
|
+
"react-native": ">=0.64.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@react-native-async-storage/async-storage": "^2.2.0",
|