From 193bfdbd88578ead6b5df942a72e30dab362e790 Mon Sep 17 00:00:00 2001 From: Andrei Bechet Date: Fri, 26 Jun 2015 10:33:56 +0200 Subject: [PATCH] Update documentation for the android task --- 2015/android/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2015/android/README.md b/2015/android/README.md index fe2251c..43fa601 100644 --- a/2015/android/README.md +++ b/2015/android/README.md @@ -12,7 +12,7 @@ GeofenceAppTest.shouldReceiveTheLatestLocation() ## Bind to a remote service to be able to display notifications -Use the [AIDL](http://developer.android.com/guide/components/aidl.html) to allow interprocess communication between your app and another service which will allow you to display notifications. The AIDL you will use is *HeadUnit.aidl*. You are on the client side. You will need to bind to the service using a [ServiceConnection](http://developer.android.com/reference/android/content/ServiceConnection.html) object (like [here](http://developer.android.com/guide/components/aidl.html#Expose)). +Use the [AIDL](http://developer.android.com/guide/components/aidl.html) to allow interprocess communication between your app and another service which will allow you to display notifications. The AIDL you will use is *HeadUnit.aidl*. You are on the client side. You will need to bind to the service using an intent and a [ServiceConnection](http://developer.android.com/reference/android/content/ServiceConnection.html) object (see [here](http://developer.android.com/guide/components/aidl.html#Expose)). ```java Intent headUnitServiceIntent = new Intent(HeadUnit.class.getName());