Yogesh Verma
Yogesh Verma

Reputation: 11

Want to develop an Android App which will ask for password when user install the app and uninstall the same.

Want to develop an Android App which will ask for password when user install the app and uninstall the same. Can i actually develop the app like this?

Upvotes: 0

Views: 350

Answers (2)

n0idea
n0idea

Reputation: 742

You could use an <intent-filter> to detect when the user is trying to uninstall the app.

A similar question has been answered in a detailed way here.

Upvotes: 1

vanste25
vanste25

Reputation: 1774

Yes, that is possible. You can find examples on github, for example this application: appLock.

Important part is here: AppLockImpl.java

Upvotes: 0

Related Questions