Custom URL Scheme Implementation for Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
Custom URL Scheme Implementation for Mobile App
Simple
~1 business day
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1054
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Implementing Custom URL Scheme for Mobile Application

Deep link doesn't open—user sees empty browser instead of needed app screen. Or opens, but passes parameters in encoding the app doesn't parse. Classic on first URL scheme implementation.

Two Approaches and When to Choose

Custom URL Scheme (myapp://product/123) — simple to implement, but insecure: any app can register same scheme and intercept deeplink. Suitable for internal navigation between own apps or dev tools.

Universal Links (iOS) / App Links (Android) — work via HTTPS domain with verification file (apple-app-site-association / assetlinks.json). Secure, fall back to browser if app not installed. This is right path for production.

Practically, implement both: Universal Links as main mechanism, Custom URL Scheme as fallback when domain verification impossible.

Implementation Details

iOS (Swift/SwiftUI): register scheme in Info.plist under CFBundleURLTypes, handle in application(_:open:options:) for UIKit or via .onOpenURL in SwiftUI. For Universal Links—application(_:continue:restorationHandler:). Parse URL via URLComponents, not manual string split.

Android (Kotlin): add <intent-filter> with <data android:scheme="myapp"/> in AndroidManifest.xml, handle intent.data in Activity. For App Links add android:autoVerify="true" and load assetlinks.json at https://domain.com/.well-known/.

React Native: use Linking API from react-native core, for navigation—@react-navigation/native with linking config. Main mistake—forget to handle when app was closed (cold start) vs already running (foreground). These are different events.

Flutter: go_router package supports deep links natively, just configure routerConfig with GoRouter and add config to native modules via flutter_deeplinking_enabled in Info.plist/manifest.

Typical Testing Error

Test deeplinks only via Safari/Chrome, forget to check "app installed but closed" case. On iOS with Universal Links sometimes delay in AASA file verification at first launch—app opens via browser instead of deeplink, team thinks something broken. Normal behavior, cache updates within day.

Timeline: 1-3 days for basic Custom URL Scheme, up to 5 days if need Universal Links with domain setup and navigation to specific screens.