From 6f818785dba2dc39620048848addbe60326ac690 Mon Sep 17 00:00:00 2001 From: Andrei Bechet Date: Wed, 1 Jul 2015 11:57:30 +0200 Subject: [PATCH] small refactoring in android readme --- 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 416363a..618646d 100644 --- a/2015/android/README.md +++ b/2015/android/README.md @@ -16,7 +16,7 @@ Use the [AIDL](http://developer.android.com/guide/components/aidl.html) to allow ```java Intent headUnitServiceIntent = new Intent(HeadUnit.class.getName()); -headUnitServiceIntent.setPackage("com.esrlabs.headunitinterface"); +headUnitServiceIntent.setPackage("com.esrlabs.headunitservice"); bindService(headUnitServiceIntent, serviceConnection_object, BIND_AUTO_CREATE); ```