pushwoosh

Modify notifications in Phonegap and Pushwoosh

爱⌒轻易说出口 提交于 2020-01-25 21:12:13
问题 I'm currently working on PhoneGap and Pushwoosh and have some questions: Is it possible to change the text / icon of the notification in the status bar? If yes, is it also possible to show the notification only when you have received some specified data? 回答1: You will need to modify SDK for that as this functionality unfortunately is not available out of the box. If you don't mind doing some Java coding it would be rather easy. You might need to modify this file: https://github.com/shaders

Modify notifications in Phonegap and Pushwoosh

旧时模样 提交于 2020-01-25 21:12:11
问题 I'm currently working on PhoneGap and Pushwoosh and have some questions: Is it possible to change the text / icon of the notification in the status bar? If yes, is it also possible to show the notification only when you have received some specified data? 回答1: You will need to modify SDK for that as this functionality unfortunately is not available out of the box. If you don't mind doing some Java coding it would be rather easy. You might need to modify this file: https://github.com/shaders

Pushwoosh not working in the release build of Unity

╄→гoц情女王★ 提交于 2019-12-31 07:32:45
问题 I was trying to integrate Pushwoosh with Unity. The latest version needed me to actually use pro guard with gradle as there was multidex error. After that there were duplicate file errors because of proguard, which I fixed by creating a pro guard user.txt file and adding the following lines. -keep com.pushwoosh.** {*;} -dontwarn com.pushwoosh.** Now when I have everything fixed and pushwoosh running properly in all devices, there comes certain devices which do not get notifications in the

How to send Push Notification to some specific users using Pushwoosh Web API in C#?

你离开我真会死。 提交于 2019-12-23 12:44:06
问题 I want to broadcast the Push notification to some of the subscribers using the Pushwoosh Web API. I have been using the code given in their website here But it is sending to all the registered users. How can I send the notification to some specific users only? Here is the JSON making code: string pwAuth = "YOUR_AUTH_TOKEN"; string pwApplication = "PW_APPLICATION_CODE"; JObject json = new JObject( new JProperty("application", pwApplication), new JProperty("auth", pwAuth), new JProperty(

How to implement pushwoosh with ionic 2

血红的双手。 提交于 2019-12-22 00:35:54
问题 I want to implement pushwoosh in ionic 2 i am using this cordova plugin. i am new to ionic 2 want to know how to use methods from this plugin. 回答1: First read the pushwoosh manual about using the cordova plugin: http://docs.pushwoosh.com/docs/cordova-phonegap After that i got this code working on ios and android. On step 3, you can use the following code as a service provider: in my projects folder i created this file: /src/app/providers/push-service.ts import { Injectable } from "@angular

Integrating PushWoosh on iOS 7 not getting subscribed on pushwoosh

跟風遠走 提交于 2019-12-12 02:52:26
问题 As Mentioned on Their Site 3 steps Step 1 - Add Push NotificationsSDK to your project (Done) Step 2 - In Info.plist add the following key Pushwoosh_APPID with your Pushwoosh id Step 3 - Add below code in App delegate #import "PushNotificationManager.h - (void) onPushAccepted:(PushNotificationManager *)pushManager withNotification:(NSDictionary *)pushNotification { NSLog(@"Push notification received"); } I did all these three simple steps but I am not being subscribed to my app on PushWoosh.

Error Message: ARC is required to compile Pushwoosh SDK

牧云@^-^@ 提交于 2019-12-11 18:13:23
问题 I am new in xcode. I got recurring message error when building for testing: *PWRequest.m User defined issues "ARC is required to compile Pushwoosh SDK"* In code it shows: #if ! __has_feature(objc_arc) #error "ARC is required to compile Pushwoosh SDK" #endif I don't understand. I added a new pushwoosh sdk. I thank you very much for your help. 回答1: You can set ARC on a file basis. Go to the BuildPhases->CompileSources. You can select sources there and pass ARC flag. Same as here: How can I

Pushwoosh not working in the release build of Unity

亡梦爱人 提交于 2019-12-02 13:18:39
I was trying to integrate Pushwoosh with Unity. The latest version needed me to actually use pro guard with gradle as there was multidex error. After that there were duplicate file errors because of proguard, which I fixed by creating a pro guard user.txt file and adding the following lines. -keep com.pushwoosh.** {*;} -dontwarn com.pushwoosh.** Now when I have everything fixed and pushwoosh running properly in all devices, there comes certain devices which do not get notifications in the release build. (There are no problems with the debug build.) Can anyone help me with this? What reason

Pushwhoosh remote notification

陌路散爱 提交于 2019-11-28 14:44:21
We used Pushwhoosh for remote notification. Its working fine but Icon badge count not increased. Here is code: - (void) onPushReceived:(PushNotificationManager *)pushManager withNotification:(NSDictionary *)pushNotification onStart:(BOOL)onStart { [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0]; [[UIApplication sharedApplication] setApplicationIconBadgeNumber:1]; } - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [[UIApplication sharedApplication] registerForRemoteNotificationTypes: (UIRemoteNotificationTypeSound

Pushwhoosh remote notification

白昼怎懂夜的黑 提交于 2019-11-27 08:46:31
问题 We used Pushwhoosh for remote notification. Its working fine but Icon badge count not increased. Here is code: - (void) onPushReceived:(PushNotificationManager *)pushManager withNotification:(NSDictionary *)pushNotification onStart:(BOOL)onStart { [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0]; [[UIApplication sharedApplication] setApplicationIconBadgeNumber:1]; } - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions