Skip to content

Instantly share code, notes, and snippets.

@Foovanadil
Last active August 29, 2015 14:07
Show Gist options
  • Save Foovanadil/511a3a94b25eb6e694cc to your computer and use it in GitHub Desktop.
Save Foovanadil/511a3a94b25eb6e694cc to your computer and use it in GitHub Desktop.
Xamarin Android IntentService Example
using Android.App;
using Android.Content;
using Android.Support.V4.App;
using Android.Gms.Location;
using Android.Locations;
namespace TIG.Todo.AndroidApp
{
[Service]
[IntentFilter(new[] { "com.sdtig.Todo.WITHIN_PROXIMITY" })]
public class GeofenceIntentService : IntentService
{
protected override void OnHandleIntent (Intent intent)
{
//Handle Intent
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment