Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force delete a Google Glass GDK Glassware App

I loaded one of the sample GDK apps and ran it on glass using ADT. How do I now delete the App from glass?

like image 931
Hadi Avatar asked Dec 11 '13 01:12

Hadi


2 Answers

You can uninstall it using adb from the terminal:

$ adb uninstall your.apps.package.name

where your.apps.package.name is the package defined in the application's manifest.

Furthermore, if you ever install anything where you don't have the source and you're not sure what the package name is, you can list all the installed packages with the following command:

$ adb shell pm list packages
like image 70
Tony Allevato Avatar answered Nov 19 '22 21:11

Tony Allevato


You may find Chrome "app" ChromeADB useful too. This is a visual interface for simple use.

See
https://chrome.google.com/webstore/detail/chromeadb/fhdoijgfljahinnpbolfdimpcfoicmnm/reviews?utm_source=chrome-ntp-launcher

like image 2
ErstwhileIII Avatar answered Nov 19 '22 19:11

ErstwhileIII