3

How to create an android autostart application? my app shows special date notifications and it must automatically start. tnx

Hamid
  • 103
  • 1
  • 7

1 Answers1

1

You can use AlarmManager to schedule a time for when you'd like your application to launch. And you can use BroadcastReceiver to launch your app on a specific operating system event such as boot complete.

Steven Trigg
  • 1,903
  • 2
  • 19
  • 22
  • I work in XE5 and can't find "AlarmManager" and "BroadcastReceiver" – Hamid Feb 25 '14 at 12:41
  • 1
    Please see the tutorial as suggested by Filipe.Fonseca in a comment above. It has references to using BroadcastReceiver in an XE5 environment. – Steven Trigg Feb 25 '14 at 12:44