You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`requestPermissionsForPushNotifications`| boolean |`false`| Whether to request permissions for push notifications (iOS only) |
131
131
132
-
### Disabling New Architecture
132
+
### New Architecture
133
133
134
-
`@iterable/react-native-sdk` is _NOT_ compatible with Reacts New Architecture,
135
-
so this needs to be disabled in your `app.json`:
134
+
Expo SDK 55 requires React Native's [New Architecture](https://reactnative.dev/architecture/landing-page). Ensure `newArchEnabled` is set to `true` in your `app.json`:
136
135
137
136
```json
138
137
{
139
138
"expo": {
140
-
"newArchEnabled": false
139
+
"newArchEnabled": true
141
140
}
142
141
}
143
142
```
@@ -374,14 +373,9 @@ If you encounter the error "Signing for 'IterableExpoRichPush' requires a develo
374
373
375
374
## ✅ Requirements and Limitations
376
375
377
-
- From v2.0.2,`@iterable/react-native-sdk` supports React Native's New
378
-
Architecture](https://reactnative.dev/architecture/landing-page) through the
379
-
Interop Layer. We are in the process of updating the SDK to fully support the
380
-
New Architecture, and suggest using the legacy architecture in the meantime.
381
-
*TLDR;* Use the New Architecture at your own risk -- you may encounter
382
-
significant issues.
383
-
- See [Disabling New Architecture](#disabling-new-architecture) for
384
-
instructions on how to disable new architecture in your app.
376
+
- From v2.0.2, `@iterable/react-native-sdk` supports React Native's New
377
+
Architecture. Expo SDK 55 requires the New
378
+
Architecture; see [New Architecture](#new-architecture) for configuration.
0 commit comments