app uninstalled

jchal

Active Member
Licensed User
Longtime User
hi all,
it it possible to know if an up is been uninstalled from a users device?
we need to know which user has uninstalled the app
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
it it possible to know if an up is been uninstalled from a users device?
No. No event is raised when a user (or any Security-Software running) deinstalls a app.
 
Upvote 0

sonicmayne

Member
Licensed User
Longtime User
It sounds like you want to know when an app has been removed from the user's device?

If this is the case have you tried using the Phone library's PhoneEvents class (in a service) and do something when you receive it?

You would declare PE in the service's Process_Globals, and in Service_Create you would initialize it and then you would create a sub similar to this:

B4X:
Sub PE_PackageRemoved (Package As String, Intent As Intent)
    'Your code to do stuff here
End Sub
 
Upvote 0

mare1980k1

Member
Licensed User
Longtime User
Send beacon via PHP through webview with sticky service. Idk if that is possible..
 
Upvote 0

Similar Threads

Top