Hey everyone I have been toying around with a native extension lately for Android and I need to add Google Cloud Messaging. I was able to get the Google Cloud Messaging app to work on its own. But now that I have integrated it into a native extension for Flash I have found an issue I can't resolve.
08-21 17:58:01.661: W/ActivityManager(180): Unable to start service Intent { act=com.google.android.c2dm.intent.REGISTRATION cat=[air.GCMAppTest.debug] flg=0x10 cmp=air.GCMAppTest.debug/com.xxxxxxxxx.extensions.GCM.GCMIntentService (has extras) }: not found
This error comes up when the GCM Broadcast Receiver receives the
08-21 17:58:01.661: V/GCMBroadcastReceiver(7604): GCM IntentService class: com.gamecloudstudios.popsportsandroidane.extensions.GCM.GCMIntentService
The error is caused by the Flash Package Context being the default package. When I need the default package to be the package containing the GCMIntentService.
Has anyone been able to get the GCMIntentService to run in an Android Flash Native Extension? or any AndroidIntentService for that matter.