본문 바로가기
개발/Flutter

Firebase dynamic link 안 될 때

by dev_caleb 2022. 12. 12.
728x90

다이나믹 링크 공유 했는데 앱이 안켜질 때! 

 

안드로이드 일 경우 intent filter를 설정해줬는지 확인해보자

 

https://firebase.flutter.dev/docs/dynamic-links/receive

 

Receive Firebase Dynamic Links in a Flutter app | FlutterFire

This page is archived and might not reflect the latest version of the

firebase.flutter.dev

 

일단 공식문서 확인 후 

 

mainactivity 안에 intent filter를 넣어줬더니 성공했다!!

 

<intent-filter>
    <action android:name="android.intent.action.VIEW"/>
    <category android:name="android.intent.category.DEFAULT"/>
    <category android:name="android.intent.category.BROWSABLE"/>
    <data
        android:host="matjipmemo.page.link"
        android:scheme="https"/>
</intent-filter>
728x90

'개발 > Flutter' 카테고리의 다른 글

how to compare boolean value?  (0) 2022.12.16
naver login 이 안 될 때 (flutter)  (0) 2022.12.12
Firebase Crashlytics  (0) 2022.12.08
[번역] flutter_local_notifications  (0) 2022.12.08
typedef 에서 generic function 사용하기  (0) 2022.12.08