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>