facebook twitter hatena line email

Unity/URLからアプリ起動/iOS

提供: 初心者エンジニアの簡易メモ
2025年12月5日 (金) 02:57時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索

iOSの場合

===独自ドメインで、公開場所に、apple-app-site-associationファイルを用意する。 例:

ttps://yourdomain.com/.well-known/apple-app-site-association

MIME が application/json にする。

apple-app-site-association ファイルの中身

{
  "applinks": {
    "details": [
      {
        "appIDs": ["TEAMID.bundleid"],
        "paths": [ "/invite*" ]
      }
    ]
  }
}

appIDsの部分の例

TEAMID:8VA6Uxxxxx
bundleid:com.example.app1
appIDs:8VA6Uxxxxx.com.example.app1