millo-L / react-native-kakao-share-link

리액트 네이티브 카카오 링크 오픈 소스
MIT License
31 stars 24 forks source link

Crashed on iOS with Kakao Login Library installed #7

Open xubmuajkub opened 2 years ago

xubmuajkub commented 2 years ago

I have React Native Kakao Login library installed before getting this lib to install but the app will crash whenever I call the share function.

I cannot get the full log anymore but I still have this:

Error log: Crashed:: Dispatch queue: com.facebook.react.KakaoShareLinkQueue

Platform iOS 15, run on iPhone 13 Simulator (Also crashed on physical device)

Test function:

try {
    const response = await KakaoShareLink.sendFeed({
        content: {
            title: `Evermay`,
            imageUrl: '',
            link: {},
            description: `Referral link: ${referralLink}`,
        },
    });
    console.log(response, referralLink);
} catch (e) {
    console.error(e);
    console.error(e.message);
}