728x90
https://docs.flutter.dev/cookbook/navigation/set-up-universal-links
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
'flutter' 카테고리의 다른 글
flutter unit test 구현 (0) | 2023.09.04 |
---|---|
Flutter에서 사이드 메뉴 구현하기 (0) | 2023.09.04 |
Set up app links for Android (0) | 2023.09.03 |
(flutter) uni_links + go_router => routing 안됨 (해결 못함.) (0) | 2023.08.30 |
Flutter 구글플레이스토어 공개 테스트용 App Bundle 만들기 with 카카오 소셜로그인 (0) | 2023.08.28 |
댓글