Renuka
Renuka

Reputation: 843

My application wont allow me to open any other application

I created a sample package listener application which get launched when user clicks any other application. But currently I am not able to uninstall old version and even not able install updated version. The application is not allowing me to open settings or task manager or anything else. i am not able to do anything Please help me out. My phone get hacked by the application.

Is there any way to uninstall application?

Upvotes: 0

Views: 69

Answers (1)

Rajesh
Rajesh

Reputation: 15774

You can use adb to uninstall your application. Connect your device to your computer, and execute the following command from a terminal or command prompt:

adb uninstall <package name>

(Assuming you have Android SDK installed and adb is in the application PATH)

Upvotes: 2

Related Questions