/**
  * Read gcm key
  *
  * @param coreXML
  * @return gcm key
  */
 public String readGCMKey(CoreXMLHandler coreXML) {
   String gcmKey = null;
   try {
     gcmKey = coreXML.getGcmKey();
   } catch (Exception ex) {
     ex.printStackTrace();
   }
   return gcmKey;
 }