Firebase ダイナミック リンクをアプリに統合しようとしています (現在、他の Firebase コンポーネントを使用していません)。ドキュメントに記載されているすべての手順を実行しましたが、
AppInvite.AppInviteApi.getInvitation(mGoogleApiClient, this, autoLaunchDeepLink);
さらに、インテント フィルターがアタッチされているアクティビティの onCreate でトーストをログに記録して表示しようとしていますが、oncreate でさえ呼び出されないようです。インテント フィルターを削除すると、代わりにダイナミック リンクが Launcher アクティビティを開きます。これがインテントフィルターを追加した方法です
<activity android:name=".receiver.DynamicLinkReceiver">
<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="licsuperagent.com" android:scheme="http"/>
<data android:host="licsuperagent.com" android:scheme="https"/>
</intent-filter>
</activity>
通過する唯一のログメッセージは、
com.xx.xx D/FirebaseApp: Notifying background state change listeners.
私は何を間違っていますか?