Skip to content

Commit

Permalink
Update workflows and readme, enable New Arch
Browse files Browse the repository at this point in the history
  • Loading branch information
bndkt committed Jun 11, 2024
1 parent c913e98 commit 40b5318
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build package
run: bun run build
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "18.x"
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm publish
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# react-native-app-clip

> **Warning**
> Starting with version 0.0.35, react-native-app-clip requires **Expo SDK 48** and **React Native 0.71**.
> Starting with version 0.3.0, react-native-app-clip requires **Expo SDK 51** and **React Native 0.74**.
Expo Config Plugin that generates an App Clip for iOS apps built with Expo.

Expand Down
12 changes: 11 additions & 1 deletion example/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": ["../app.plugin.js"]
"plugins": [
"../app.plugin.js",
[
"expo-build-properties",
{
"ios": {
"newArchEnabled": true
}
}
]
]
}
}
Binary file modified example/bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
},
"dependencies": {
"expo": "~51.0.12",
"expo-build-properties": "~0.12.3",
"react": "18.2.0",
"react-native": "0.74.2"
},
Expand Down

0 comments on commit 40b5318

Please sign in to comment.