I am getting the following message from the logcat:
08-16 11:34:36.257: W/BroadcastQueue(1040):
Unable to launch app com.abc.xyz/10192 for broadcast Intent
{ act=android.intent.action.BOOT_COMPLETED flg=0x8000010 (has extras) }: process is not permitted to autostart
My manifest.xml looks like this:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<receiver android:name="com.abc.xyz.BootComplete" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
I have tried so many methods but its not working.I know there is some other problem.Thanks.