Force delete a Google Glass GDK Glassware App
Asked Answered
C

2

9

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

Catnap answered 11/12, 2013 at 1:2 Comment(0)
T
26

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
Topnotch answered 11/12, 2013 at 1:26 Comment(1)
Tony its possible from adb but if we want to uninstall the application from code what have to use? Native android uninstall approach is not possible cause in dialog we can't navigate button to button. So what we should follow for uninstalling from code?Underlay
H
2

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

Halsey answered 7/2, 2014 at 3:48 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.