xtify

Xtify + Worklight 6.1 integration in android environment

混江龙づ霸主 提交于 2019-12-12 06:29:58
问题 We have been working on the integration between worklight and xtify for push notifications. We are using version 2.3.2 for xtify sdk since latest version (2.4.2) made the app failed because a class not found exception. The logic for using xtify has been added to the native code of the WL hybrid application as follows: public class XtifyWL extends WLDroidGap { public static final String XTIFY_APP_KEY = "xxxxxxxx-xxxxx-xxxx-xxxxx-xxxxxxxxx"; public static final String PROJECT_NUM =

What is diffrence implementing xtify using GCM and xtify using XMPP in android?

谁说胖子不能爱 提交于 2019-12-12 05:38:11
问题 if we are implementing the push notification in android then What is diffrence implementing xtify using GCM and xtify using XMPP in android ? 回答1: Xtify XMPP: pros: Works with Android API level 5 or higher. Works with devices that does not support C2DM/GCM like the kindle fire. cons: Runs a service in the background. Its only supported by Xtify 1.x APIs. Xtify C2DM/GCM: pros Works with Android API Level 8 or higher. Supported in the new 2.x Xtify APIs. It does not run its own service. cons it

Xtify : When will a Xid be marked as Inactive

别说谁变了你拦得住时间么 提交于 2019-12-11 09:27:18
问题 When does the Xtify mark an Xid as Inactive? I uninstalled an Xtify App but the Xid is still shown in the Xtify console. When I attempt to send a notification to the uninstalled app's Xid, the request is accepted. Can you please specify all the conditions in which an Xid is marked inactive. Also what is the mechanism used to determine if the Xid is inactive 回答1: An XID becomes inactive after two things happen: The user uninstalls the app A push notification (APNS or GCM) is sent to the device

GCM with xtify. Doesn't register the device

ε祈祈猫儿з 提交于 2019-12-10 18:24:17
问题 I'm trying to implement push with Google Cloud Messaging. I make all the steps of http://developer.xtify.com/display/sdk/Getting+Started+with+Google+Cloud+Messaging but the device doesn't appear in Test Implementation. My appkey is Development. I try with the example of xtify but I change the keys in the MainActivity of the example, XTIFY_APP_KEY, PROJECT_ID but I don't know how to send a push from this app. I enable notification. What must I do to do? Thank you! 回答1: Here are a couple things