> For the complete documentation index, see [llms.txt](https://help.impact.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.impact.com/partner/pt-br/sobre-o-que-voce-gostaria-de-aprender/platform-features/tracking/tracking-links/create-and-manage-links/fix-ios-14-mobile-tracking-links.md).

# Corrigir links de rastreamento móvel do iOS 14

Os usuários do seu aplicativo móvel podem enfrentar um problema ao abrir links de rastreamento se tiverem atualizado o dispositivo Apple móvel para o iOS 14. Quando alguém seleciona um ativo no seu aplicativo móvel, pode ver esta mensagem de erro:

{% hint style="info" %}
**Observação:** Você precisa ter um navegador instalado para usar este recurso.
{% endhint %}

Esse problema ocorre para os usuários quando:

* Eles têm o Google Chrome definido como o navegador padrão no iOS.
* A API OpenUrl é chamada a partir da sua biblioteca .framework.

#### Correção temporária: modificar o info.plist

Você precisará modificar o `info.plist` arquivo dentro do seu aplicativo móvel e adicionar `https` como uma string em [LSApplicationQueriesSchemes](https://developer.apple.com/documentation/uikit/uiapplication/1622952-canopenurl) chave.

Modifique o seu `info.plist` arquivo para ficar como o trecho de código abaixo:

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

Esse problema provavelmente será corrigido em uma versão futura do iOS, mas a impact.com recomenda que você teste seus links para o cenário acima e faça as atualizações sugeridas no seu aplicativo móvel.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://help.impact.com/partner/pt-br/sobre-o-que-voce-gostaria-de-aprender/platform-features/tracking/tracking-links/create-and-manage-links/fix-ios-14-mobile-tracking-links.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
