After i turn on my phone, my app crashes and does not open after that. It just crashed although it is not open.
I don't know what the error because it appears after i turn on my phone and the logcat cannot monitor the phone and i don't see any error.
Receivers:
<receiver
android:name=".AlarmReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name=".ActionReceiver"
android:enabled="true" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>