The app doesn't want to run on boot when launcher icon are hidden. I hide launcher icon by removing:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
How do I make my app being called on boot even after launcher icon are hidden. Thanks.