0

I was searching for this problem since long time.finally i got the key answer.

Maheshvirus
  • 6,749
  • 2
  • 38
  • 40

1 Answers1

0

How to create AppURL scheme for your own app.Here is the answer.

Simply use the following plugins into config.xml

  <plugin name="cordova-plugin-customurlscheme">
       <param name="URL_SCHEME" value="YourAppName" />
   </plugin>

How to Get URL Scheme of any app?

-Right click on a app in iTunes, 'Show in Finder'

-Duplicate the app to Desktop

-Change .ipa to .zip

-Unzip and open the Payload folder

-Right click on app, 'Show Package Contents'

-Open 'Info.plist' in a text editor app like TextWrangler

-Search 'CFBundleURLSchemes'

-Between the tag you can find the URL

Maheshvirus
  • 6,749
  • 2
  • 38
  • 40