79804730

Date: 2025-10-30 12:05:30
Score: 0.5
Natty:
Report link

I have added the following block of code in the Info.plist inside the

CFBundleURLTypes

It gives permission for my domain so every api call which is using the domain i have mention will work and not get failed, i have tried this solution and it works.

        <key>CFBundleURLTypes</key>
        <array>
            <dict>
                <key>CFBundleURLName</key>
                <string>app.appname.in</string>
                <key>CFBundleURLSchemes</key>
                <array>
                    <string>YourAppName</string>
                </array>
            </dict>
        </array>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Rutuja Mogal