# iOS 14のモバイルトラッキングリンクを修正する

モバイルアプリのユーザーは、モバイルのAppleデバイスをiOS 14にアップデートしている場合、トラッキングリンクを開く際に問題が発生することがあります。ユーザーがモバイルアプリでアセットを選択すると、次のエラーメッセージが表示される場合があります：

{% hint style="info" %}
**注意：** この機能を使用するには、Webブラウザをインストールする必要があります。
{% endhint %}

この問題は次の場合に発生します：

* iOSでデフォルトのWebブラウザとしてGoogle Chromeが設定されている。
* OpenUrl APIがあなたの.frameworkライブラリから呼び出される。

#### 一時的な対処法：info.plistを変更する

次の項目を変更する必要があります： `info.plist` モバイルアプリ内のファイルに対して、次を追加します： `https` 文字列として [LSApplicationQueriesSchemes](https://developer.apple.com/documentation/uikit/uiapplication/1622952-canopenurl) キーに。

あなたの `info.plist` ファイルを次のコードスニペットのように変更してください：

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

この問題は将来のiOSバージョンで修正される可能性が高いですが、impact.comは上記のシナリオに対してリンクをテストし、モバイルアプリに対する提案された更新を行うことを推奨します。


---

# 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/ja/nitsuitebitaidesuka/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.
