I am studying RemoteService example in Android's APISample. In the manifest file, it declares the service like this: My question is how can I specify the service to be 'auto-start', i.e. it gets start whenever the phone start?
   <service android:name=".app.RemoteService" android:process=":remote" >
       <intent-filter>
           <!-- These are the interfaces supported by the service, which
                you can bind to. -->
           <action
android:name="com.example.android.apis.app.IRemoteService" />
Thank you.