앱 실행여부 클래스를 GCMIntentService.java파일에 구현을 하다보니 MainActivity 와 같은 패키지에 있으니
앱이 종료 되어도 푸시를 보내면 true로 나와서 GCMIntentService 파일을 다른 패키지에 이동 시켰는데 푸시 발송이 안되네요.. 무조건 메인액티비티랑 같은 곳에 있어야 하나요?
매니페스트
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<!-- Receives the actual messages. -->
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<!-- Receives the registration id. -->
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="so.test.test.gcm" />
</intent-filter>
</receiver>
<service android:name="so.spree.test.gcm.GCMIntentService" />