0

I'm actually working on an application for Google Glass. Does anybody know how to remove a livecard once it had been published ?

Thanks in advance for your help !

Bibi
  • 13
  • 3

1 Answers1

0

You probably want LiveCard.unpublish()

Prisoner
  • 49,922
  • 7
  • 53
  • 105
  • Thank you for your answer. But I have already used it and it doesn't work as I want. In fact, I have a service which publish many liveCard at different moments. When I click on one Livecard it is removed and for the other ones it doesn't work. – Bibi Jul 23 '14 at 13:23
  • 1
    Sounds like you need to provide some sample code and further details about what you're doing. Might also want to look at logcat to see if it gives any errors and, if so, post what it says. – Prisoner Jul 23 '14 at 13:26
  • It sounds like you'd need to keep a reference to each of the live cards you create and call `.unpublish` on each of them. – Jessie A. Morris Jul 23 '14 at 15:20