Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Implementing Designs for Android Adding Push Notifications from Parse.com Setting Up Push Notifications

Ruggiero A
Ruggiero A
8,534 Points

Push didn't arrive

Hi, I followed everything as in the video, but while to some users it made crash the application, for me just nothing happened. So I tried to change code with one purposed by a user in this forum as it follows:

<receiver
    android:name="com.ruggieroaltini.ribbit.utils.Receiver"
    android:exported="false" >
    <intent-filter>
        <action android:name="com.parse.push.intent.RECEIVE" />
        <action android:name="com.parse.push.intent.DELETE" />
        <action android:name="com.parse.push.intent.OPEN" />
    </intent-filter>
</receiver>

And created a Receiver class, but still push notification didn't arrive. What can I do?

If you were to add debug statements to the onReceive() of your receiver, do those at least get called?