0

Good day everybody.

I'm using "Uber" API in my iOS app, and When I check if CanOpenURL it prints This app is not allowed to query for scheme uber in the log

I search about it, and I found that I must write this to my .plist file

<key>LSApplicationQueriesSchemes</key>
<array>
<string>uber</string>
</array>

I did that but also it still the same problem.

Any Help !!

rmaddy
  • 314,917
  • 42
  • 532
  • 579
Ahmed Adnan Qazzaz
  • 333
  • 1
  • 3
  • 15
  • At one point, this was a known bug with Apple. I don't know if it's been fixed yet. Do some googling to check up on that with Apple. If your app is still working and this is still a confirmed bug with Apple, don't worry about it. – keithbhunter Dec 07 '15 at 14:28

1 Answers1

1

Please refer to this post for more information regarding the behavior of URL schemes in iOS 9 and the bug reported.

Read more about iOS deep-linking on Uber.

Also, please consider using the official iOS mobile button SDK for your deep-links on iOS

Community
  • 1
  • 1
Andrew Noonan
  • 848
  • 6
  • 13