I want to open my app from safari. This is the custom scheme in the info.plist:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.appvendor.rentalapp</string>
<key>CFBundleURLSchemes</key>
<array>
<string>open-rental</string>
</array>
</dict>
</array>
If I press a button in safari like this:
<a href="open-rental://custom-string">Open App</a>
I get an iOS Warning "Open in <app-name>"
. My question is can I prevent this warning popup?