RORK LABJP
MAX — Rork Max is built on Claude Code and Claude Opus 4.6, generating native Swift apps directly instead of React NativeAPPLE — Rork Max targets the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageWORKFLOW — In practice, users settle into letting the AI scaffold while they rewrite the state management and data layer themselvesSEED — Rork raised a $15M seed led by Left Lane Capital in April, with Peak XV, True Ventures, and a16z Speedrun joiningPAPERLINE — Rork acquired app builder Paperline and says it will stay acquisitive to bring in engineering talentREVIEW — Three-month revisit reviews are growing, clarifying where the tool shines and where it doesn'tMAX — Rork Max is built on Claude Code and Claude Opus 4.6, generating native Swift apps directly instead of React NativeAPPLE — Rork Max targets the whole Apple ecosystem: iPhone, iPad, Apple Watch, Apple TV, Vision Pro, and iMessageWORKFLOW — In practice, users settle into letting the AI scaffold while they rewrite the state management and data layer themselvesSEED — Rork raised a $15M seed led by Left Lane Capital in April, with Peak XV, True Ventures, and a16z Speedrun joiningPAPERLINE — Rork acquired app builder Paperline and says it will stay acquisitive to bring in engineering talentREVIEW — Three-month revisit reviews are growing, clarifying where the tool shines and where it doesn't
Articles/Dev Tools
Dev Tools/2026-06-21Advanced

Why "Save to Photos" Fails on Only Some Devices in Your Rork App — expo-media-library Permission Scopes and Save Design

Your Rork app's image-saving feature works perfectly on your phone but fails for a subset of users. The real cause is expo-media-library permission scopes. Here is a save flow and album design that handles writeOnly permission, iOS limited access, and Android 14 partial access.

expo-media-library3permissions6React Native202Rork502image saving

Premium Article

It never fails on my own iPhone, yet the reviews say "it won't save"

When you run a few wallpaper apps as an indie developer, an odd review shows up every so often: "I tap the button and nothing appears in Photos." On my own devices, it never fails — not during development, not before submission. And yet, one star at a time, the "it won't save" reports keep accumulating.

When I chased it on real devices, the cause was almost never a failed image download or a full disk. It was the permission scope of expo-media-library ending up in a state I hadn't anticipated, depending on the OS version and on a choice the user made in a permission dialog at some point in the past.

What makes this mismatch nasty is that it's hard to reproduce on a developer's device. Most developers tap "Allow Access to All Photos" on first launch and then develop with full access forever after. Real users, meanwhile, are a mix: some picked "Selected Photos Only," some chose "Allow only a portion" on Android 14, and some declined out of suspicion because the app demanded read access when all they wanted to do was save. Here, I'll share how to design a save-only permission correctly and build a save flow that absorbs these device differences.

Why saving succeeds on one device and fails on another

A expo-media-library grant is not a simple allow/deny binary. Each OS has tiers, and those tiers have grown finer year by year.

iOS holds photo-library access in four states: full access, limited access (the user can see only the photos they picked), denied, and "add-only." That last one — add-only — lets you save but never read existing photos. It is a save-only permission, and it is the key to this whole problem.

Android branches further by version. Android 12 and earlier used WRITE_EXTERNAL_STORAGE, Android 13 introduced READ_MEDIA_IMAGES, and Android 14 added partial access (READ_MEDIA_VISUAL_USER_SELECTED), the equivalent of "selected photos only." The tricky part: if your app only writes an image it created into Pictures/ via MediaStore, read permission is actually unnecessary from Android 10 onward. Despite that, if your implementation requests read permission anyway, you ask save-only users for a heavy grant, and your denial rate climbs.

Put plainly, three combinations decide whether a save succeeds.

FactorTypical developerThe user who gets stuck
iOS access stateFull accessLimited / add-only / denied
Android versionLatest test deviceBehavior differs on 13 and 14
Breadth of permission requestedRead + write togetherWants only to save, declines read

Thank you for reading this far.

Continue Reading

What follows includes implementation code, benchmarks, and practical content we hope you'll find useful. This site runs without ads — server and development costs are supported entirely by members like you. If it's been helpful, we'd be truly grateful for your support.

WHAT YOU'LL LEARN
If reviews say "can't save" while it always works on your own device, you'll be able to isolate the per-device permission-scope differences and find the real cause
You'll get a save flow and album-creation code that handles writeOnly permission, iOS limited access, and Android 14 partial access, ready to drop into your own app
You'll design a save flow that doesn't swallow permission denials or album failures, and instead routes users to a path they can recover from themselves
Secure payment via Stripe · Cancel anytime

Unlock This Article

Get full access to the rest of this article. Buy once, read anytime. This site is ad-free — your support goes directly toward keeping it running.

or
Unlock all articles with Membership →
Share

Thank You for Reading

Rork Lab is ad-free, supported entirely by members like you. We publish practical guides daily with implementation code, benchmarks, and production-ready patterns. If you've found it useful, we'd love to have you on board.

  • Copy-paste ready implementation code
  • New advanced guides published daily
  • $5/mo or $10 for lifetime access
View Membership →

Related Articles

Dev Tools2026-04-23
Why Your Rork App Can't Save Images to the Camera Roll — A Complete Fix
Image and video saving often breaks the moment a Rork-generated app leaves the simulator. This guide walks through the permission model, expo-media-library quirks, and Android 13+ scoped storage changes that reliably trip people up.
Dev Tools2026-07-11
When Sentry Burned Through Its Event Quota in Days — Trimming Noise Before It Ships
A Sentry quota that empties early in the month is almost always a noise problem, not an error surge. Here is how to shrink event volume before it ships — with beforeSend, sampling, and grouping — while keeping the errors that actually matter inside the quota.
Dev Tools2026-07-10
Adding React Compiler to Expo Let Me Delete 41 Hand-Written memo Calls
I enabled React Compiler on Rork-generated React Native screens and measured the rerender counts with Profiler. Here is how I decided which memo and useCallback calls were safe to delete, how to find the components the compiler bailed out on, and how to catch regressions in CI.
📚RECOMMENDED BOOKS
Build a Large Language Model (From Scratch)
Sebastian Raschka
LLM Dev
Prompt Engineering for LLMs
Berryman & Ziegler
Prompting
AI Engineering
Chip Huyen
AI Eng
* Contains affiliate links
See all →