# Fix iOS 14 Mobile Tracking Links

Your mobile app users may experience an issue opening tracking links if they have updated their mobile Apple device to iOS 14. When someone selects an asset in your mobile app, they may see this error message:

{% hint style="info" %}
**Note:** You need a web browser installed to use this feature.
{% endhint %}

This issue occurs for users when:

* They have Google Chrome set as their default web browser in iOS.
* The OpenUrl API is called from your .framework library.

#### Temporary fix: Modify info.plist

You'll need to modify the `info.plist` file within your mobile app and append `https` as a string to [LSApplicationQueriesSchemes](https://developer.apple.com/documentation/uikit/uiapplication/1622952-canopenurl) key.

Modify your `info.plist` file to look like the code snippet below:

```programlisting
<key> 
     LSApplicationQueriesSchemes
</key> 
<array> 
     <string>https</string> 
<array>
```

This issue will likely get fixed in a future version of iOS, but impact.com recommends you test your links for the above scenario and make the suggested updates to your mobile app.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.impact.com/partner/what-would-you-like-to-learn-about/platform-features/tracking/tracking-links/create-and-manage-links/fix-ios-14-mobile-tracking-links.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
