@circle-fin/w3s-pw-react-native-sdk 2.1.0 → 2.2.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/BARE_REACT_NATIVE_GUIDE.md +4 -3
- package/README.md +4 -2
- package/android/build.gradle +2 -2
- package/package.json +10 -10
|
@@ -8,9 +8,10 @@ This guide provides step-by-step instructions for integrating the Circle User-Co
|
|
|
8
8
|
## System Requirements
|
|
9
9
|
|
|
10
10
|
- React Native 0.60+ (recommended 0.76-0.81)
|
|
11
|
-
- Node.js
|
|
12
|
-
- Android API 21+ (recommended API
|
|
11
|
+
- Node.js 20.19+ and npm/yarn
|
|
12
|
+
- Android API 21+ (recommended API 36+)
|
|
13
13
|
- iOS 15.1+ (recommended iOS 17+)
|
|
14
|
+
- Xcode 16.1+ (recommended 16.3+)
|
|
14
15
|
- CocoaPods (for iOS projects)
|
|
15
16
|
|
|
16
17
|
> [!NOTE]
|
|
@@ -314,7 +315,7 @@ Learn more about [Running On Device](https://reactnative.dev/docs/running-on-dev
|
|
|
314
315
|
|
|
315
316
|
**Issue**: `npx install-expo-modules@latest` fails with other errors
|
|
316
317
|
|
|
317
|
-
- **Solution**: Ensure Node.js
|
|
318
|
+
- **Solution**: Ensure Node.js 20.19+ is installed. Try clearing npm cache: `npm cache clean --force`
|
|
318
319
|
|
|
319
320
|
### Android Build Issues
|
|
320
321
|
|
package/README.md
CHANGED
|
@@ -22,8 +22,10 @@ You can also find the SDK v1 sample app in the sample app repository's [sdk-v1 b
|
|
|
22
22
|
| ------------ | --------------- | ------------------- |
|
|
23
23
|
| React Native | 0.60+ | 0.76-0.81 |
|
|
24
24
|
| iOS | 15.1+ | iOS 17+ |
|
|
25
|
-
| Android | API 21+ | API
|
|
26
|
-
| Expo SDK | 49+ |
|
|
25
|
+
| Android | API 21+ | API 36+ |
|
|
26
|
+
| Expo SDK | 49+ | 54+ |
|
|
27
|
+
| Node.js | 20.19+ | 20.20+ |
|
|
28
|
+
| Xcode | 16.1+ | 16.3+ |
|
|
27
29
|
|
|
28
30
|
## Installation
|
|
29
31
|
|
package/android/build.gradle
CHANGED
|
@@ -31,10 +31,10 @@ if (useManagedAndroidSdkVersions) {
|
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
project.android {
|
|
34
|
-
compileSdkVersion safeExtGet("compileSdkVersion",
|
|
34
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 36)
|
|
35
35
|
defaultConfig {
|
|
36
36
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
37
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
37
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 36)
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@circle-fin/w3s-pw-react-native-sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"packageManager": "yarn@1.22.22",
|
|
5
5
|
"description": "React Native SDK for Circle Programmable Wallet",
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -73,23 +73,23 @@
|
|
|
73
73
|
"homepage": "https://github.com/circlefin/w3s-react-native-sdk.git #readme",
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@babel/core": "^7.28.5",
|
|
76
|
-
"@expo/config-plugins": "~
|
|
77
|
-
"@types/jest": "
|
|
78
|
-
"@types/react": "~19.
|
|
76
|
+
"@expo/config-plugins": "~54.0.4",
|
|
77
|
+
"@types/jest": "29.5.14",
|
|
78
|
+
"@types/react": "~19.1.10",
|
|
79
79
|
"@typescript-eslint/eslint-plugin": "^8.38.0",
|
|
80
80
|
"@typescript-eslint/parser": "^8.38.0",
|
|
81
81
|
"eslint": "^9.26.0",
|
|
82
82
|
"eslint-config-prettier": "^10.1.8",
|
|
83
83
|
"eslint-plugin-react": "^7.37.5",
|
|
84
84
|
"eslint-plugin-react-native": "^5.0.0",
|
|
85
|
-
"expo": "~
|
|
86
|
-
"expo-module-scripts": "^
|
|
87
|
-
"expo-modules-core": "~
|
|
85
|
+
"expo": "~54.0.0",
|
|
86
|
+
"expo-module-scripts": "^5.0.8",
|
|
87
|
+
"expo-modules-core": "~3.0.29",
|
|
88
88
|
"jest": "^29.7.0",
|
|
89
89
|
"prettier": "^3.6.2",
|
|
90
|
-
"react": "
|
|
91
|
-
"react-native": "0.
|
|
92
|
-
"react-test-renderer": "
|
|
90
|
+
"react": "~19.1.0",
|
|
91
|
+
"react-native": "0.81.5",
|
|
92
|
+
"react-test-renderer": "~19.1.0",
|
|
93
93
|
"ts-jest": "^29.4.5",
|
|
94
94
|
"typescript": "^5.9.3"
|
|
95
95
|
},
|