Skip to content

Commit 32a6611

Browse files
readme and testscript for RN 0.73+ (#628)
1 parent cacf7df commit 32a6611

File tree

2 files changed

+23
-12
lines changed

2 files changed

+23
-12
lines changed

.github/workflows/test_version.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ on:
2222
required: true
2323
type: string
2424
default: '6.0'
25+
Node_Version:
26+
description: 'Node.js Version (18+ for RN 0.73+)'
27+
required: true
28+
type: string
29+
default: '18'
2530

2631
jobs:
2732
build-windows:
@@ -31,10 +36,10 @@ jobs:
3136
uses: actions/[email protected]
3237
- name: Setup MSBuild
3338
uses: microsoft/[email protected]
34-
- name: Setup Node 16
39+
- name: Setup Node ${{ github.event.inputs.Node_Version }}
3540
uses: actions/setup-node@v3
3641
with:
37-
node-version: 16
42+
node-version: ${{ github.event.inputs.Node_Version }}
3843
- name: Build Playground Windows x64
3944
run: |
4045
npx react-native init Playground --version ${{ github.event.inputs.RN_Version }}
@@ -62,10 +67,10 @@ jobs:
6267
steps:
6368
- name: Checkout Repo
6469
uses: actions/[email protected]
65-
- name: Setup Node 16
70+
- name: Setup Node ${{ github.event.inputs.Node_Version }}
6671
uses: actions/setup-node@v3
6772
with:
68-
node-version: 16
73+
node-version: ${{ github.event.inputs.Node_Version }}
6974
- name: Setup Java
7075
uses: actions/setup-java@v3
7176
with:
@@ -134,10 +139,16 @@ jobs:
134139
steps:
135140
- name: Checkout Repo
136141
uses: actions/[email protected]
137-
- name: Setup Node 16
142+
- name: Setup Node ${{ github.event.inputs.Node_Version }}
138143
uses: actions/setup-node@v3
139144
with:
140-
node-version: 16
145+
node-version: ${{ github.event.inputs.Node_Version }}
146+
- name: Setup Java
147+
uses: actions/setup-java@v3
148+
with:
149+
distribution: 'temurin'
150+
java-version: '17'
151+
check-latest: true
141152
- name: Build Playground Android
142153
run: |
143154
npm uninstall -g react-native-cli @react-native-community/cli

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -228,11 +228,11 @@ For iOS the XCode project needs to be generated with `CMake` as described [above
228228

229229
| React Native | Babylon React Native |
230230
|---|---|
231-
| 0.64 | 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.3 |
232-
| 0.65 -> 0.68 | 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.3 |
233-
| 0.69 | 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.3 |
234-
| 0.70 | 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.3 |
235-
| 0.71 -> 0.72 | 1.6.0, 1.6.1, 1.6.3 |
231+
| 0.64 | 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.3, 1.8.1 |
232+
| 0.65 -> 0.68 | 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.3, 1.8.1 |
233+
| 0.69 | 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.3, 1.8.1 |
234+
| 0.70 | 1.5.0, 1.5.1, 1.6.0, 1.6.1, 1.6.3, 1.8.1 |
235+
| 0.71 -> 0.73 | 1.6.0, 1.6.1, 1.6.3, 1.8.1 |
236236

237237
Here are the package names for Android/iOS and Windows:
238238

@@ -242,7 +242,7 @@ Here are the package names for Android/iOS and Windows:
242242
| 0.65 -> 0.68 | [@babylonjs/react-native-iosandroid-0-65](https://www.npmjs.com/package/@babylonjs/react-native-iosandroid-0-65) | [@babylonjs/react-native-windows-0-65](https://www.npmjs.com/package/@babylonjs/react-native-windows-0-65) |
243243
| 0.69 | [@babylonjs/react-native-iosandroid-0-69](https://www.npmjs.com/package/@babylonjs/react-native-iosandroid-0-69) | [@babylonjs/react-native-windows-0-69](https://www.npmjs.com/package/@babylonjs/react-native-windows-0-69) |
244244
| 0.70 | [@babylonjs/react-native-iosandroid-0-70](https://www.npmjs.com/package/@babylonjs/react-native-iosandroid-0-70) | [@babylonjs/react-native-windows-0-70](https://www.npmjs.com/package/@babylonjs/react-native-windows-0-70) |
245-
| 0.71 -> 0.72 | [@babylonjs/react-native-iosandroid-0-71](https://www.npmjs.com/package/@babylonjs/react-native-iosandroid-0-71) | [@babylonjs/react-native-windows-0-71](https://www.npmjs.com/package/@babylonjs/react-native-windows-0-71) |
245+
| 0.71 -> 0.73 | [@babylonjs/react-native-iosandroid-0-71](https://www.npmjs.com/package/@babylonjs/react-native-iosandroid-0-71) | [@babylonjs/react-native-windows-0-71](https://www.npmjs.com/package/@babylonjs/react-native-windows-0-71) |
246246

247247
Also, [@babylonjs/react-native](https://www.npmjs.com/package/@babylonjs/react-native) is a needed dependency for all platforms.
248248

0 commit comments

Comments
 (0)