Android application launch location

Is it possible to track on Android where someone started the application from (i.e., from the mailbox, from the menu of the latest applications or from shortcuts on the desktop, etc.)?

+4
source share
2 answers

Sorry, but this is not possible.

Even if that were the case, consider how easy it is to abuse such features with malware . You can listen to intentions directed at you and those that are broadcast, but the launch of applications should not be a broadcast event.

What you can do is replace the launcher . If the user agrees to this.

You can also hack crawls by reading the logs of a magazine. For example, give your application permission android.permission.READ_LOGS and analyze the logs to determine the application that launched it. This is just an idea, however ... it looks like something you would not want to rely on.

+1
source

If you have created your own home screen, it may provide you with some information.

But in a warehouse with any affordable home screens, probably not.

+1
source

Source: https://habr.com/ru/post/1414286/


All Articles