error on oncreate() method

Posted by user1644081 on Stack Overflow See other posts from Stack Overflow or by user1644081
Published on 2012-09-05T09:36:48Z Indexed on 2012/09/05 9:37 UTC
Read the original article Hit count: 93

Filed under:

I am begginer in Android App and using Java as when I add this code :

GCMRegistrar.checkDevice(this);
        GCMRegistrar.checkManifest(this);
        final String regId = GCMRegistrar.getRegistrationId(this);
        if (regId.equals("")) {
          GCMRegistrar.register(this, SENDER_ID);
        } else {
          Log.v(TAG, "Already registered");
        }

I had error on : SENDER_ID Log TAG

the error "cannot be resolved to available "

© Stack Overflow or respective owner

Related posts about android