Questions tagged [custom-scheme-url]
19 questions
36
votes
7 answers
Method 'application:openURL:options:' is not called
I'm trying to open my app from a web page using custom schemes. The app is opened but the following method is not called:
func application(_ app: UIApplication, open url: URL, options [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
//…

Jabson
- 1,585
- 1
- 12
- 16
33
votes
4 answers
Method 'scene(_:openURLContexts:)' is not called
In the info.plist file I configured URL Identifier and URL Scheme successfully. Also I am able to open the app using the custom URL. The problem is when the app launches for the first time, the method
func scene(_ scene: UIScene, openURLContexts…

iPhone
- 4,092
- 3
- 34
- 58
12
votes
2 answers
Custom URL scheme without confirmation prompt (Swift)
I've found two options to open my app from a Safari web page: a custom URL scheme created in my app project's Info.plist or Apple's Universal Linking. Obviously the custom URL scheme is the easiest one to set up, but the problem I'm having with this…

Mark Carols
- 403
- 4
- 20
3
votes
1 answer
canOpenURL return true and app is installed but app is not opening
when I using canOpenURL to open universal link, (target app is installed)
canOpenURL return true, but app is not opening (LSApplicationQueriesSchemes are not registered)
but if I use open(_ url, options) app is opening
If I am responsible for not…

PrepareFor
- 2,448
- 6
- 22
- 36
3
votes
3 answers
onNavigationStateChange not working in Android React Native
Hello friends i want to integrate deep link in my react native project with Android so below is my code
alert(error)}
startInLoadingState =…

Harshal Kalavadiya
- 2,412
- 4
- 38
- 71
2
votes
0 answers
custom url scheme not working in Android react native
Hello friends i want to integrate deep link in my react native project with custom url scheme so below is my code
render() {
return (

Harshal Kalavadiya
- 2,412
- 4
- 38
- 71
2
votes
1 answer
Does the CFBundleURLIconFile key have any purpose in iOS?
In an app's Info.plist the developer has the opportunity to declare custom URL schemes supported by the app. The developer may also associate each scheme with an Apple Icon Image (icns) file in the bundle that will serve as an icon.
I have never…

William Rosenbloom
- 2,506
- 1
- 14
- 37
2
votes
1 answer
Android TextView make http and custom scheme urls clickable
I'm creating an android app and have defined an activity as follows:

manishKungwani
- 925
- 1
- 12
- 44
1
vote
1 answer
Launching OSX app created with Unity from custom URL scheme
I'm looking for a way to launch an OSX app(Standalone) created with Unity from a browser using a custom URL scheme.
After add a custom URL scheme to the Info.plist, I can launch the app successfully.
And I want to know how can I get the arguments…

Doi
- 11
- 2
1
vote
1 answer
when I resume app by Custom URL scheme first time,the window.handleOpenURL doesn't execute
When I start app by custom scheme url,event 'deviceready' trigger,and window.handleOpenURL in the getBillFromLink() execute;
then I open a webpage and resume the app from it,but window.handleOpenURL didn't execute;function onResume and…

ErenOne
- 11
- 1
1
vote
0 answers
1
vote
1 answer
Send URL/link with custom scheme through WhatsApp
I have a requirement of sending a url(myapp://app.myapp.com/data)with custom scheme through WhatsApp.But in WhatsApp its not showing custom scheme(myapp://) as link. Only app.myapp.com/data is showing as link.
I have tried below code:
Intent intent…

Jai
- 33
- 7
1
vote
1 answer
Same scheme url does not open the target activity when app is already running
I am opening my application using scheme url from browser. I have an activity say ActivityA that opens up when user clicks a link on a browser and which then starts another activity say ActivityB and finish itself. Now if i have 4 different links…

Lalit Mohan
- 86
- 7
1
vote
1 answer
facebook opening hybrid app in their webview
I am working on developing mobile in ionic framework, and i am using custom scheme url for app.
Feature i am working:
When user share anything on facebook, and when other user click on that facebook shared link they will redirected to that shared…

Dipesh Parmar
- 27,090
- 8
- 61
- 90
0
votes
0 answers
Are there any security issues with using Custom URL schemas as a redirect uri for a mobile app
Im trying to implement SSO in my mobile application but im having issues with the redirect uri on the iOS side. Currently right now my redirect has the scheme of https://. I realize this is an issue an want to move to a custom url (Example:…

TheRealEddieDean
- 11
- 2