I am developing a system o bring non web widgets to android using two components, A Modified HomeScreenApp and the Widget itself.
Is there a specific Android Manifest attribute that allows an app to AutoStart on device bootup?
I was under the impression that BroadCast receiver is once the app has started
Neerhaj Joshi
Greenhorn
Joined: Mar 02, 2009
Posts: 9
posted
0
Yes, you need to request for permission android.permission.RECEIVE_BOOT_COMPLETED , you have to declare it outside the <application> node of Android Manifest file as,
When the phone boots, an Intent is broadcasted to all apps who have registered to receive this Intent. To register for this Intent, like Imran said, you have to use BroadcastReceiver, first declare a receiver inside the <application> node as,
MyReceiver.java is the class that will receive the Intent. You will handle the Intent in the onReceive() method of BroadcastReceiver class. You get approx. 5 secs to do what you want inside onReceive(), after that the system will show 'App not responding' dialog to the user, so make sure you don't do any heavy processing inside that method.
Imran Mohd
Ranch Hand
Joined: Mar 02, 2009
Posts: 38
posted
0
and than you have to start your Activity form the onReceive() method of BroadcastReceiver class
i.e
i don't know how much it is reliable..... but generally i use this...!!!
Fred Grott
Ranch Hand
Joined: Oct 05, 2002
Posts: 346
posted
0
Thank you both
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.