Giter VIP home page Giter VIP logo

Comments (13)

GoogleCodeExporter avatar GoogleCodeExporter commented on September 28, 2024
Git this bug too.

It seems (from source code) that action is null: 
https://code.google.com/p/gcm/source/browse/gcm-client/src/com/google/android/gc
m/GCMBaseIntentService.java?r=3f8285f108caecf9ee040cdadda3a024b81f7e3e#194

This bug seems to happen on Android 4.x.x versions

Here's some datas: http://ge.tt/3CNt5Fl?c

Original comment by stermi on 8 Jul 2013 at 3:23

from gcm.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 28, 2024
You might get this if you extends the GCMBaseIntentService and call 
super.onStartCommand(Intent, int int).

Original comment by [email protected] on 22 Aug 2013 at 7:24

from gcm.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 28, 2024
I also see these exceptions.  GCMBaseIntentService is crashing.  Can you please 
add some protection to prevent this? Below is a sample.  There is no call to 
super.onStartCommand() in the app's subclass.

log: Sep 6, 2013 5:29:25 AM

SEVERE: uncaught: 
Throwable occurred: java.lang.NullPointerException
    at com.google.android.gcm.GCMBaseIntentService.onHandleIntent(SourceFile:194)
    at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:137)
    at android.os.HandlerThread.run(HandlerThread.java:60)

sys: 

android.version: 4.1.2
brand/model: Verizon/SCH-I605


Original comment by [email protected] on 6 Sep 2013 at 3:58

from gcm.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 28, 2024
Yeah, My app get NPE also, any solution for this?

java.lang.NullPointerException
at 
com.google.android.gcm.GCMBaseIntentService.onHandleIntent(GCMBaseIntentService.
java:194)
at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.os.HandlerThread.run(HandlerThread.java:60)

Original comment by [email protected] on 7 Oct 2013 at 2:36

from gcm.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 28, 2024
Comment on #1
Exception is thrown on line 194:

    String action = intent.getAction();

This clearly indicate that intent itself is null and not an action.

Original comment by [email protected] on 26 Mar 2014 at 4:01

from gcm.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 28, 2024
got the same NPE on SCH-I535, android 4.3

Original comment by [email protected] on 1 Apr 2014 at 1:57

from gcm.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 28, 2024
I see this issue as well. Any resolutions ?

Original comment by [email protected] on 1 Oct 2014 at 5:03

from gcm.

GoogleCodeExporter avatar GoogleCodeExporter commented on September 28, 2024
As a workaround you can add onStart method to your service:

  @Override
  public void onStart(Intent intent, int startId) {
    if (intent != null) {
      super.onStart(intent, startId);
    }
  }

Original comment by [email protected] on 1 Oct 2014 at 9:57

from gcm.

silvolu avatar silvolu commented on September 28, 2024

This has been fixed in the new API.

from gcm.

Hemant0601 avatar Hemant0601 commented on September 28, 2024

@silvolu I am still getting this issue. what changes I need to do to fix this?

from gcm.

kroikie avatar kroikie commented on September 28, 2024

What version of the API are you using?

from gcm.

Hemant0601 avatar Hemant0601 commented on September 28, 2024

@kroikie how can i get the version of the API? this is my gradle inclusion though
compile 'com.google.android.gms:play-services-gcm:8.4.0'

from gcm.

ogeidix avatar ogeidix commented on September 28, 2024

Hi @Hemant0601. From your previous post you can see that you are using the version 8.4.0.
The latest version of the GCM library is:
compile 'com.google.android.gms:play-services-gcm:9.0.1'

Also you might want to check the new Firebase Cloud Messaging sdk:
https://firebase.google.com/docs/cloud-messaging/
This is a major update of the GCM library with new a integration with the Firebase platform.

from gcm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.