自己実装のApplicationクラスがあります。
アプリケーションGCMIntentServiceから参照を取得しようとしています。
何らかの理由でnullを返します。
public class GCMIntentService extends GCMBaseIntentService {
private AppVariables app;
private GCMMessageReceiver gcmMessageReceiver;
public GCMIntentService()
{
super(GCMManager.SENDER_ID);
this.app = (AppVariables) getApplication();
this.gcmMessageReceiver = new GCMMessageReceiver(app);
}
}