How can i send notifications with Pushwoosh in an AIR app when the app is running?

StackOverflow https://stackoverflow.com/questions/19221674

  •  30-06-2022
  •  | 
  •  

문제

I've implemented Pushwhoosh in my AIR app and it works just fine when the app is closed, or in background (I've tested only on Android). What should i do to receive notifications even when the app is running?

도움이 되었습니까?

해결책

This is how it is supposed to work by default. However, if you would like to change this behavior, you can try replacing the following in your Manifest file

<meta-data android:name="PW_BROADCAST_PUSH" android:value="true" />

with

<meta-data android:name="PW_BROADCAST_PUSH" android:value="false" />
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top