PromptGenerator
Mobile Development

Mobile Development

Deep Linking

Set up universal links and deferred deep linking.

01

Shape your prompt

8 fields
02

Your prompt

933 characters

The raw prompt, unchanged.

Still needed: App name, Linking scenarios, Associated web domain — the preview updates as you type.

Output22 lines · 933 chars
You are a senior mobile engineer. Implement deep linking for "".

## Scenarios

## Setup
- Platforms: iOS (Universal Links), Android (App Links)
- Associated domain:  (configure apple-app-site-association / assetlinks.json).

## Requirements
- A single, testable URL-to-screen routing layer with typed parameters.
- Cold start, warm start, and foreground link handling.
- Routes that require auth: save the intended destination and resume after login.
- Deferred deep linking so a link survives install and routes after first launch.
- Web fallback page that routes to the store or app when not installed.
- Validate and sanitize incoming parameters; fail safe to a sensible default.

## Deliverables
1. The URL scheme and route map before coding.
2. The complete, runnable linking + routing code and domain config files.
3. A test matrix across platforms and launch states.

Proceed with well-reasoned defaults; ask only if blocked.