@jacque - thanks for the pointer.
Now... I do not have a Mac development license, which seems to be required for me to configure any of those plist-options that are grey'ed-out for me.
Could you or anyone else confirm that changing that plist-file setting as you suggested in the Mac application configuration, would also have the desired effect for the IOS-building of the app?
I did get a little closer to a solution by at least showing that it would work:
if I run the "rresocket" demo app in the IOS Simulator, and then change the Info.plist of the app that runs in the simulator by adding the snippet:
Code: Select all
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.creativeapptitude.rreskeleton</string>
<key>CFBundleURLSchemes</key>
<array>
<string>rreskeleton</string>
</array>
</dict>
</array>
then I can launch the rreskeleton-app from within the safari-browser with "rreskeleton://".
Unfortunately, I cannot do the same thing with the app that is generated for the iphone as that one is signed...
... but at least it works a little bit.
Any more pointers or a confirmation about the working of this Mac plist "trick" for IOS would be appreciated.
-Frank.