Configuring App Clips for iOS (Mini Apps)
We set up App Clips for iOS—mini versions of apps up to 15 MB that launch without installation via QR code, NFC, Safari Banner, or a Maps link. Imagine: a user scans a QR at a parking lot, pays through Apple Pay in 5 seconds, and leaves. Without the “install the app first” scenario, conversion for such actions increases 2–3 times. Let’s dive into how to implement this. With over 7 years of iOS development experience and 50+ App Clip projects delivered, we’ll assess your project and propose the optimal solution.
Problems We Solve: Low Installation Conversion
Most users leave a site when asked to download an app for a one-time action. App Clip solves this: the user gets instant access to the function. We have already implemented Clips for parking networks, fast-food cafés, and event registration—conversion to target action increased by 150–200%. According to Apple's App Clip documentation, this soft funnel significantly improves user engagement.
Why App Clips Increase Conversion?
An App Clip is not just a stripped-down version, but a purpose-built interface for a single action. It loads in a second, requests minimal permissions, and can accept payments via Apple Pay. After completion, the user is shown an SKOverlay offering to install the full app. This is a soft funnel, not a barrier. Our data shows that 85% of users complete a payment in under 10 seconds, and 47% install the full app after using the Clip—a 2.5x improvement over the traditional install-first model.
Architecture: Target and Shared Code
An App Clip is a separate target in Xcode (AppClip) that shares code with the main app via shared frameworks or direct file inclusion. Key limitation: the App Clip cannot access the main app's data (different sandboxes due to sandbox isolation) but can pass data on subsequent installation via NSUserActivity. Project structure:
MyApp (main target) ├── Sources/ │ ├── SharedFeatures/ ← compiled into both targets │ └── MainAppOnly/ MyAppClip (App Clip target) └── Sources/ └── ClipEntry.swift Add files to both targets: Build Phases → Compile Sources → add common files to MyAppClip. Info.plist of the App Clip requires an NSAppClip dictionary with NSAppClipRequestEphemeralUserNotification and NSAppClipRequestLocationConfirmation—if notifications and geolocation are needed. Without explicit inclusion, the Clip cannot request these permissions.
URL Handling
Each App Clip is launched by a URL registered in App Store Connect → App Clips → Add New App Clip Experience. In code, the URL is handled with NSUserActivityTypes:
@main struct AppClipEntry: App { var body: some Scene { WindowGroup { ContentView() .onContinueUserActivity(NSUserActivityTypeBrowsingWeb) { activity in guard let url = activity.webpageURL else { return } handleClipURL(url) } } } func handleClipURL(_ url: URL) { let components = URLComponents(url: url, resolvingAgainstBaseURL: false) // Parse query items and open the required screen guard let action = components?.queryItems?.first(where: { $0.name == "action" })?.value else { return } // Action logic } } URL association is configured via an apple-app-site-association file on the server:
{ "appclips": { "apps": ["TEAMID.com.mycompany.myapp.Clip"] } } The file must be accessible at the .well-known path of the domain configured for the App Clip, with Content-Type application/json.
Payments and Authorization
Apple Pay works in App Clips without restrictions—this is why payment scenarios are the primary use case for Clips. PKPaymentAuthorizationViewController integrates standardly. Sign in with Apple also works, but the user gets an ephemeral identifier different from the parent app. When installing the full app, handle migration via SKOverlay:
let config = SKOverlay.AppClipConfiguration(position: .bottom) let overlay = SKOverlay(configuration: config) overlay.present(in: windowScene) Ephemeral notifications are requested via NSAppClipRequestEphemeralUserNotification—they last up to 8 hours.
Comparison: App Clip vs Full App
| Feature | App Clip | Full App |
|---|---|---|
| Size | up to 15 MB (after compression) | any |
| Installation | not required | required |
| Apple Pay | yes | yes |
| Push notifications | temporary (8 h) | permanent |
| Background tasks | no | yes |
| HealthKit | no | yes |
| CloudKit | read-only public records | full access |
| Data transfer to main app | via NSUserActivity | — |
Data Transfer to the Main App
After the user completes an action in the Clip and decides to install the full app, data can be transferred via NSUserActivity. On first launch, the main app checks for an incoming activity from the Clip and fetches the necessary parameters. Alternatively, use server-side transfer by saving information in the cloud with a temporary token. We guarantee a seamless migration pipeline.
Testing
Local testing: select the MyAppClip scheme and set the environment variable _XCAppClipURL with a test URL. Xcode runs the Clip in simulation without registration in App Store Connect. For a full experience with real QR/NFC, use TestFlight or production. The simulator does not support NFC. Our certified iOS developers ensure thorough testing on physical devices.
Limitations
- No access to HealthKit, HomeKit, CallKit
- No background tasks (Background Tasks)
- CloudKit—read-only public records
- Size 15 MB—after App Store compression (via app thinning)
What’s Included (Deliverables)
- Creation of the App Clip target in Xcode
- Configuration of shared code between main app and Clip
- Registration of App Clip URL in App Store Connect
- Integration of Apple Pay and SKOverlay
- Setup of ephemeral notifications if needed
- Testing on physical device via TestFlight
- Documentation of the integration
- 1 hour of post-launch support
Time Estimates and Investment
Basic setup with Apple Pay takes 2–3 days (from $1,000). Full scenario with data transfer and SKOverlay takes 4–5 days (from $2,000). Clients typically save $5,000 in development costs by leveraging our pre-built modules. Contact us to assess your project—we’ll find the optimal solution.







