Git Product home page Git Product logo

Comments (8)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 23, 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 July 23, 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 July 23, 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 July 23, 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 July 23, 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 July 23, 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 July 23, 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 July 23, 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.

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.