Following this question, I've a doubt.
Let's say in my applicaiton I've defined 2 intent services that automatically starts after boot, i.e.
<application>
<receiver android:name=".InterntService1" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
<receiver android:name=".InterntService2" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
</application>
Now, does that mean that IntentSerive2 will only be executed after IntentSerivce1 has been finished?
Or both service1 & 2 can be executed parallely?