I am using phonegap 1.4 for my iOS projects. I am trying to open my app from the other app using custom url schema. I added the following keys in .plist file:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.cams.myapp</string>
<key>CFBundleURLSchemes</key>
<string>myApp</string>
</dict>
</array>
After doing the modification i added <a href="myApp://">Open myApp</a> in my other app and tried to open the myapp. But when i clicked on "Open myApp" nothing happens.
Does phonegap supports custom url schema or i am doing something wrong. Plz help.
Thanks in advance.
