I'm following the instructions as the Getting Started section for Xtify notifications doing the following:
Context myAppContext = getApplicationContext();
XtifySDK.start(myAppContext , MyApp.XTIFY_APP_KEY, MyApp.SENDER_ID);
String xid = XtifySDK.getXidKey(myAppContext);
if(!"".equals(xid) && xid != null) {
...
}
And I realised that when I register for the first time, it returned the Xid, but if I uninstall and deploy again using Eclipse It returns null in XtifySDK.getXidKey()
instruction.
The app target is build using Google APIs 4.0 (level 14).
I'd thank and appreciate your help in this guys.