Conversation
# Why Update docs based on https://expo.dev/changelog/eas-observe-is-now-generally-available <!-- Please describe the motivation for this PR, and link to relevant GitHub issues, forums posts, or feature requests. --> # How Remove the now out of date note about Observe being free while in open beta. <!-- How did you build this feature or fix this bug and why? --> # Test Plan 👀 <!-- Please describe how you tested this change and how a reviewer could reproduce your test, especially if this PR does not include automated tests! If possible, please also provide terminal output and/or screenshots demonstrating your test/reproduction. --> # Checklist <!-- Please check the appropriate items below if they apply to your diff. --> - [ ] I added a `changelog.md` entry and rebuilt the package sources according to [this short guide](https://github.com/expo/expo/blob/main/CONTRIBUTING.md#-before-submitting) - [ ] This diff will work correctly for `npx expo prebuild` & EAS Build (eg: updated a module plugin). - [ ] Conforms with the [Documentation Writing Style Guide](https://github.com/expo/expo/blob/main/guides/Expo%20Documentation%20Writing%20Style%20Guide.md)
…ent so XCFramework precompilation succeeds (#49076)
# Why In order to support react native 0.87 we should bump react-native-keyboard-controller to latest # How Update react-native-keyboard-controller to 1.22.4 # Test Plan run BareExpo locally # Checklist <!-- Please check the appropriate items below if they apply to your diff. --> - [ ] I added a `changelog.md` entry and rebuilt the package sources according to [this short guide](https://github.com/expo/expo/blob/main/CONTRIBUTING.md#-before-submitting) - [ ] This diff will work correctly for `npx expo prebuild` & EAS Build (eg: updated a module plugin). - [ ] Conforms with the [Documentation Writing Style Guide](https://github.com/expo/expo/blob/main/guides/Expo%20Documentation%20Writing%20Style%20Guide.md)
…Async for 6x speedup (#48637) # Why We noticed that fetching detailed asset data when `resolveWithFullInfo` was set to `true` was quite slow on Android. The bottleneck was the sequential per-file EXIF and location reads inside `putAssetsInfo` — each image required opening the file and calling into MediaProvider via Binder IPC (~15ms per image). That being said, the old code did this entirely linearly, with no parallelism, which was inefficient since most time was spent waiting on I/O. **Credits:** this was based off of internal work at Wanderlog by @robin-pham # Impact **For a read of 300 photos** - Before: 5-6 seconds - After: 500-800ms # How - Refactored `putAssetsInfo` to copy cursor rows into `AssetRowData` in batches (up to 5000 rows), then process each batch in parallel on a dedicated `Dispatchers.IO.limitedParallelism(32)` dispatcher. - Parallel workers perform EXIF parsing, dimension resolution, and GPS location reads (`getExifLocationForUri` / legacy path) without touching the cursor, which is not thread-safe. - Concurrency is capped at 32 based on experimentation — higher values mostly queue on Binder's shared thread pool rather than improving throughput. - Added unit test coverage for `resolveWithFullInfo=true` and cursor pagination preservation. - Updated the native-component-list Media Library screen and bare-expo config to make manual performance testing easier (page size selector, fetch timing display, `resolveWithFullInfo` toggle on Android). # Test Plan - [x] Android native unit tests: `pnpm expotools native-unit-tests --platform android --packages expo-media-library` - [x] Test-suite E2E on Android: `cd apps/bare-expo && pnpm test:android` - [x] Manual performance comparison: `cd apps/bare-expo && pnpm android` | Test results | Media Library fetch timing (before) | Media Library fetch timing (after) | | --- | --- | --- | | <img width="1080" height="2400" alt="image" src="https://github.com/user-attachments/assets/cae9dd9d-d934-403f-af6c-aecb2413b135" /> | <img width="1080" height="2400" alt="image" src="https://github.com/user-attachments/assets/4d02bc11-4d39-49b1-8c76-75207d9afa24" /> | <img width="1080" height="2400" alt="image" src="https://github.com/user-attachments/assets/1ae35c2a-9f33-42cd-9b30-18ee3060b3f5" /> | # Checklist - [x] I added a `changelog.md` entry and rebuilt the package sources according to [this short guide](https://github.com/expo/expo/blob/main/CONTRIBUTING.md#-before-submitting) - [x] This diff will work correctly for `npx expo prebuild` & EAS Build (eg: updated a module plugin). - [x] Conforms with the [Documentation Writing Style Guide](https://github.com/expo/expo/blob/main/guides/Expo%20Documentation%20Writing%20Style%20Guide.md) --------- Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )