How to create an Android startup application?

How to create an Android startup application ? my application shows special date notifications and starts automatically. Tnx

+3
source share
1 answer

You can use AlarmManager to schedule the time when you want to run the application. And you can use BroadcastReceiver to launch your application in a specific operating system event, such as a download completion.

+1
source

All Articles