본문 바로가기
flutter

Set up universal links for iOS

by Rogan_Kim 2023. 9. 3.
728x90

https://docs.flutter.dev/cookbook/navigation/set-up-universal-links

 

Set up universal links for iOS

How set up universal links for an iOS application built with Flutter

docs.flutter.dev

 

 

Ios universal links 세팅  과정 기록

 

xcode 열기

 

- Info에서 row를 추가하여 아래처럼 key, value 넣기 ( FlutterDeepLinkingEnabled : true )

   (컨트롤 클릭으로 add row를 할 수 있음)

 

 

- 다음으로는 Runner로 이동하여 SInging & Capabilities tab의 ' + Capability ' 찾아서 클릭

 

 

 

 

공시문서를 먼저 보고 오는걸 추천드립니다.  설명 너무 잘되어있음.

 

 

Hosting apple-app-site-association file

 

identity를 찾는다

아래와 같이 세팅 apple-app-site-association.json

{
  "applinks": {
    "apps": [],
    "details": [
      {
        "appID": "com.example.deeplinkCookbook",
        "paths": [
          "*"
        ]
      }
    ]
  }
}

 

호스팅이 성공하면 아래와 같은 화면이 뜬다??

 

 

 

 

 

 

테스트

xcrun simctl openurl booted https://kimjuno97.github.io/details

App id는  <team id>.<bundle id> 형식인데 teem id는 apple developer 등록해야 얻을 수 있다..

그래서 bundle id만 넣어봤었는데 역시 안됨..

 

 

 

 

그러므로 안드로이드 공개 베타테스트가 성공적으로 완료되면 Apple developer 등록하고 할 예정입니다

728x90

댓글