Hi to all,
I want to add URL Schema so I can open my JUCE app using the browser. I can open the Xcode and add it in URL Types (in info tab). That works as expected but I want to add it to my jucer file when it opens. I tried adding it to PList Preprocessor Definitions like below
<plist>
<dict>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLIconFile</key>
<string>Icon</string>
<key>CFBundleURLName</key>
<string>MySchemaName URL</string>
<key>CFBundleURLSchemes</key>
<array>
<string>my_url_schema</string>
</array>
</dict>
</array>
</dict>
</plist>
But it never shows when I open it in Xcode. So any idea how I can add it?
Thank you very much in advance.

