ディープリンク
SDKがディープリンクを処理する方法と、アプリ内でカスタムナビゲーションを行う方法の概要
最終更新
import 'package:pushly_pushsdk/pushsdk.dart';
...
await PushSDK.registerNotificationLifecycleCallbacks(
onPushSDKDidReceiveNotificationDestination: (destination, interaction) {
// destination(ランディング URL)を使用して、アプリケーション内のアクティビティへ遷移する
// SDK に対して遷移しないよう通知するために true を返す
return true;
}
);onPushSDKDidReceiveNotificationDestination: (destination, interaction) {
// destination(ランディング URL)を使用して、アプリケーション内のアクティビティへ遷移する
// SDK に対して遷移しないよう通知するために true を返す
return true;
}