Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Location Based Push Notifications For Android

Is there anyways in sending a location based push notification for android devices with out using a third party push notification service such as Parse? I would like to send push notification to my users without the annoyance of getting a notification that doesn't relate to that specific user because they are not in a certain area. Also, I could get the users location based on a time interval but I would rather do it a different way then that, if possible.

like image 636
user3471066 Avatar asked Apr 29 '15 23:04

user3471066


People also ask

How do I send notifications based on location?

Geotargeting. Geotargeting is a general term to describe location-based push notifications. Geotargeting can use the zip code of the home address, or target a city, a country, etc. This strategy uses existing segments of your customer data to deliver your messages to geographically relevant users.

What is location based app messaging?

Create a user-friendly, real-time communication channel between venue operators and visitors. This channel may be used to push marketing messages or notifications right to customers' devices.


1 Answers

Yes, this is entirely possible, as long as I'm correctly interpreting what you are asking.

To accomplish this, you would send the GCM push notification to all of your users (unless you had a way, server-side of filtering some of them out). Then in your application, instead of just creating a Notification and passing it to the notification manager, you would first use the LocationManager (or the newer LocationServices API) to determine if the user is within the proper location first, and then just discard the GCM notification if they're not.

You'll need to take care of several things in order to do this:

  • Your AndroidManifest.xml will require several permission changes, both for the GCM changes, and for the Location access:

    <!-- Needed for processing notifications -->
    <permission android:name="com.myappname.permission.C2D_MESSAGE" android:protectionLevel="signature" />
    <uses-permission android:name="com.myappname.permission.C2D_MESSAGE" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
    
    <!--  Needed for Location -->
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    
  • You'll also need to set up a Notification Receiver in the <application> section of the manifest:

    <receiver android:name="com.myappname.NotificationReceiver" android:permission="com.google.android.c2dm.permission.SEND">
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <category android:name="com.myappname" />
        </intent-filter>
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
            <category android:name="com.myappname" />
        </intent-filter>
    </receiver>
    
  • In addition, you'll need write your NotificationReceiver java class, and override the onReceive function:

    public class NotificationReceiver extends BroadcastReceiver {
        public void onReceive(final Context context, final Intent intent) {
    
            if ("com.google.android.c2dm.intent.REGISTRATION".equals(intent.getAction())) {
    
                handleRegistration(context, intent); // you'll have to write this function
    
            } else if ("com.google.android.c2dm.intent.RECEIVE".equals(intent.getAction())) {
    
                // the handle message function will need to check the user's current location using the location API you choose, and then create the proper Notification if necessary.
                handleMessage(context, intent);
    
            }
    }
    
like image 166
Carl Anderson Avatar answered Oct 16 '22 22:10

Carl Anderson