Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it common practice to ask users whether they wish to receive push notifications?

I'm new to the Android platform. Apple requires every iOS app to ask for and confirm push notifications, but I have not noticed any apps that I've downloaded on my new Android phone prompting me if I want to receive push notifications. It just automatically registers me for them. Is this normal Android convention, to automatically register users for push notifications, assuming they can disable them later?

In my own Android application, should I be prompting users and asking if they want them before I register them? Obviously it would be the polite thing to do to ask permission before signing them up for push notifications, but if that's not common practice I see no reason to potentially lose some receivers of them.

like image 815
Earle Davies Avatar asked Dec 30 '14 14:12

Earle Davies


People also ask

What percentage of people allow push notifications?

The average opt-in rate across Android and iOS devices ranged at 67.5%. Android users (at 60%) showed more willingness to receive push notifications when compared to their iOS counterparts (at 45%).

Do most people have push notifications turned on?

Push notifications opt-in ratesAs of Q2 2022, Android devices accounted for 71.6% of new device sales, compared to iOS's share of 27.7%, with remaining percentage belongs to Samsung, KaiOS and Nokia. Although, today's Android's edge over iOS is smaller, in Q2, 2021 the split was 73% and 27% respectively.

When should you ask for notification permissions?

Generally speaking, you should ask users for permissions only when absolutely necessary and only after ensuring that users understand how granting this access will benefit them.

Do you need consent for push notifications?

Push notifications can let users know when others have interacted with their social media accounts by liking photos or leaving comments, as seen in this Android push notification from Luca. Android and Fire OS don't require a user to opt in to receiving these notifications from apps.


1 Answers

Making decisions for the user is actually a strong Android guideline. Here is a list of the "Android Design Principles", written by Google. As you can see "Decide for me, but let me have the final say" fits the behavior that you've mentioned.

Some things to keep in mind when discussing Android notifications:

  • Users can disable your app's notifications in their OS settings. If they really don't want to hear from your app, they'll disable notification's there.

  • User context. You don't know what context the user is installing your app in. Users who are on a crowded train, relaxing on their day off, hanging out at a friend's place, or maybe waiting for a flight, all want different things out of your app at the time of installation. The guy on a crowded train is going to want your app to work immediately, with very minimal setup, while the guy relaxing at home may not mind a long setup process.

  • Your setup process can have a significant impact on your user retention. This Forbes article briefly discusses intrusive setup forums and their impact on app uninstalls.

At the end of the day however, it all depends on the needs of your audience. If you're targeting professionals, then they might be willing to put in some extra time up-front if they believe your app could help make their job easier. If you're targeting a casual gamer, you'll want them to get in and rolling as fast as possible. It's up to you to decide how best to serve your audience.

Here's a video from Google I/O 2013 that discusses the Android Design Principals in greater detail.

Hope I was able to provide some insight.

like image 148
sonictt1 Avatar answered Nov 15 '22 20:11

sonictt1