I found sample code, but it seems that the classes and string constants used in them are outdated and are no longer provided. Also can you tell me what changes to make in the manifest file. I found example code at the following link

link|improve this question

feedback

2 Answers

First, you need the permission in your manifest:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

Also, in your manifest, define your service and listen for the boot-completed action:

<service android:name=".MyService" android:label="My Service">
    <intent-filter>
        <action android:name="com.myapp.MyService" />
    </intent-filter>
</service>

<receiver
    android:name=".receiver.StartMyServiceAtBootReceiver"
    android:enabled="true"
    android:exported="true"
    android:label="StartMyServiceAtBootReceiver">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
    </intent-filter>
</receiver>

Then you need to define the receiver that will get the BOOT_COMPLETED action and start your service.

public class StartMyServiceAtBootReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
            Intent serviceIntent = new Intent("com.myapp.MySystemService");
            context.startService(serviceIntent);
        }
    }
}

And now your service should be running when the phone starts up.

link|improve this answer
I did not require the permission to run it on my emulator. I did not use the exact code. I used Intent serviceIntent = new Intent(Intent.FLAG_ACTIVITY_NEW_TASK) and kept MyService as 'Activity' rather than a 'Service'. But I dont think that would make any difference. Is the permission required to run it on an actual phone? I am sorry if i am asking a silly question, I am new to android programming. Also can you please suggest me some tutorial where I can learn such basic things about android - like activities, content etc. – Poojan Jun 17 '11 at 21:47
1  
Activities: developer.android.com/guide/topics/fundamentals/activities.html Services: developer.android.com/guide/topics/fundamentals/services.html To start your application when the phone actually starts up, you'll need to register the service as shown above, and then in there you can use startActivity() to start your app. It's not a good idea to put a screen in front of the user if they didn't ask for it, though. – Sean Schulte Jun 17 '11 at 22:10
feedback

Listen for the ACTION_BOOT_COMPLETE and do what you need to from there. There is a code snippet here (which will anger CommonWare - my apologies).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.