Add app to AutoStart app list in Android software

I want my application to be in the startup list after installation.

I know, when I install an application like (whatsapp), it automatically goes into the autorun list. I want my application to be the same

enter image description here

I tried the code in this question How to autostart an Android application?

but, unfortunately, no answers actually made the application autostart.

Not sure if I was doing something wrong

the reason i need the app is autorun, it's just getting notifications from webservice. because the application does not receive notifications if its open or autorun is not enabled.

would be grateful for your help

thanks

+8
android android-manifest autostart android-service
source share
1 answer

This screen / behavior is not native to Android, i.e. the screen you are showing comes from a custom novel, possibly from a specific manufacturer.

As you said, the answers in another question do not work, but they are the only native way to launch the application when loading / starting.

Check if the application / user movie has an API (a specific broadcast receiver for implementation or some kind of SDK ...). You can always decompile one of the applications that implement this behavior to see how they appear in this menu.

+2
source share

All Articles