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 trialRuggiero A
8,534 PointsPush 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?
Ruggiero A
8,534 PointsThis question has been resolved here http://stackoverflow.com/questions/27367362/i-cant-receive-push-notifications-in-app-from-parse/27367613?noredirect=1#comment43187739_27367613 since in 3 days nobody replied in this forum
Danial Goodwin
13,247 PointsDanial Goodwin
13,247 PointsIf you were to add debug statements to the
onReceive()
of your receiver, do those at least get called?