我有几个应用程序用pushwoosh实现推送通知。当我发送正常的推送通知时,它工作正常。如果我点击通知,它会将我带到应用程序。但是,当我收到带触发器的推送通知时,当我尝试从通知中心启动应用程序时,它会询问“使用完整操作”对话框,其中包含一系列带有pushwoosh的应用程序。它基本上不会启动应用程序。
我已在ManifestAndroid.xml中为启动活动设置了一个过滤器
<activity
android:name=".activity.MainActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="com.xinz.app.MESSAGE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
有没有办法停止显示“使用”对话框完成操作,像正常通知一样启动应用,然后显示触发器弹出?
答案 0 :(得分:1)
你确定你没有与&#34; LAUNCHER&#34;类别?
您可以尝试删除.MESSAGE意图过滤器,这会让Pushwoosh SDK尝试找到您应用的默认活动。