From 45d9321963a51470dc1aadf6ec9193cb881eed06 Mon Sep 17 00:00:00 2001 From: Scott Main Date: Tue, 12 Nov 2013 10:54:53 -0800 Subject: [PATCH] fix typo in caption and XML spacing Change-Id: I28adb9e6b5fb96f9f25a62766a197bb0a06bfdd0 --- docs/html/guide/topics/connectivity/nfc/hce.jd | 28 +++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/html/guide/topics/connectivity/nfc/hce.jd b/docs/html/guide/topics/connectivity/nfc/hce.jd index 3e6468fb446f..4ef685987096 100644 --- a/docs/html/guide/topics/connectivity/nfc/hce.jd +++ b/docs/html/guide/topics/connectivity/nfc/hce.jd @@ -70,7 +70,7 @@ protocol frames to a secure element. Figure 2 illustrates how host-based card em works.

-

Figure 2. NFC card emulation with a secure element.

+

Figure 2. NFC card emulation without a secure element.

Supported NFC Cards and Protocols

@@ -288,12 +288,12 @@ enforces that only the Android OS can bind to your service.

 <service android:name=".MyHostApduService" android:exported="true"
-        android:permission="android.permission.BIND_NFC_SERVICE">
+         android:permission="android.permission.BIND_NFC_SERVICE">
     <intent-filter>
         <action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE"/>
     </intent-filter>
     <meta-data android:name="android.nfc.cardemulation.host_apdu_service"
-        android:resource="@xml/apduservice"/>
+               android:resource="@xml/apduservice"/>
 </service>
 
@@ -306,7 +306,7 @@ below:

android:description="@string/servicedesc" android:requireDeviceUnlock="false"> <aid-group android:description="@string/aiddescription" - android:category="other"> + android:category="other"> <aid-filter android:name="F0010203040506"/> <aid-filter android:name="F0394148148100"/> </aid-group> @@ -381,14 +381,14 @@ shown below:

 <host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android"
-           android:description="@string/servicedesc" 
-           android:requireDeviceUnlock="false"
-           android:apduServiceBanner="@drawable/my_banner">
-       <aid-group android:description="@string/aiddescription"
-                  android:category="payment">
-           <aid-filter android:name="F0010203040506"/>
-           <aid-filter android:name="F0394148148100"/>
-       </aid-group>
+        android:description="@string/servicedesc" 
+        android:requireDeviceUnlock="false"
+        android:apduServiceBanner="@drawable/my_banner">
+    <aid-group android:description="@string/aiddescription"
+               android:category="payment">
+        <aid-filter android:name="F0010203040506"/>
+        <aid-filter android:name="F0394148148100"/>
+    </aid-group>
 </host-apdu-service>
 
@@ -478,12 +478,12 @@ almost identical to the declaration of a HCE service. The exceptions are:

 <service android:name=".MyOffHostApduService" android:exported="true"
-     android:permission="android.permission.BIND_NFC_SERVICE">
+         android:permission="android.permission.BIND_NFC_SERVICE">
     <intent-filter>
         <action android:name="android.nfc.cardemulation.action.OFF_HOST_APDU_SERVICE"/>
     </intent-filter>
     <meta-data android:name="android.nfc.cardemulation.off_host_apdu_ervice"
-         android:resource="@xml/apduservice"/>
+               android:resource="@xml/apduservice"/>
 </service>
 
-- 2.11.0