Esempio n. 1
0
 /**
  * Accepts geoloc sharing invitation
  *
  * @throws JoynServiceException
  */
 public void acceptInvitation() throws JoynServiceException {
   Logger.i(TAG, "acceptInvitation() entry ");
   try {
     sharingInf.acceptInvitation();
   } catch (Exception e) {
     throw new JoynServiceException(e.getMessage());
   }
 }