Skip to content

Commit 819a4eb

Browse files
committed
Merge remote-tracking branch 'origin/develop-v13' into develop-v13
2 parents ceacbcb + fae544f commit 819a4eb

12 files changed

Lines changed: 1062 additions & 146 deletions

.github/workflows/pull_request.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,43 @@ jobs:
127127
name: ios-build-logs
128128
path: example/xcodebuild.log
129129
retention-days: 7
130+
131+
test-android-example:
132+
runs-on: ubuntu-latest
133+
134+
steps:
135+
- name: Checkout
136+
uses: actions/checkout@v4
137+
138+
- name: Use Node.js 22
139+
uses: actions/setup-node@v4
140+
with:
141+
node-version: 22
142+
cache: "npm"
143+
144+
- name: Use Java 17
145+
uses: actions/setup-java@v4
146+
with:
147+
distribution: temurin
148+
java-version: 17
149+
150+
- name: Install root dependencies
151+
run: npm ci
152+
env:
153+
NPM_CONFIG_REGISTRY: https://registry.npmjs.org/
154+
155+
- name: Install example dependencies
156+
working-directory: example
157+
run: npm install
158+
env:
159+
NPM_CONFIG_REGISTRY: https://registry.npmjs.org/
160+
161+
- name: Generate Android project with Expo
162+
working-directory: example
163+
run: npx expo prebuild --platform android --clean
164+
env:
165+
NPM_CONFIG_REGISTRY: https://registry.npmjs.org/
166+
167+
- name: Run Android unit tests
168+
working-directory: example/android
169+
run: ./gradlew testDebugUnitTest

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ React Native Plaid Link SDK (New Architecture & Expo)
88
- [Documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/react-native-plaid-link-sdk/)
99
- [Documentation for the main branch](https://docs.expo.dev/versions/unversioned/sdk/react-native-plaid-link-sdk/)
1010

11+
# Migration guides
12+
13+
- [v13 migration guide](./V13_MIGRATION_GUIDE.md)
14+
1115
# Installation in managed Expo projects
1216

1317
For [managed](https://docs.expo.dev/archive/managed-vs-bare/) Expo projects, please follow the installation instructions in the [API documentation for the latest stable release](#api-documentation). If you follow the link and there is no documentation available then this library is not yet usable within managed projects — it is likely to be included in an upcoming Expo SDK release.

0 commit comments

Comments
 (0)