Set the transceive timeout to 10s when executeSeReset() is called

Change-Id: Id89207194a87e918aee2493c8c0fa93a97a1ff4a
diff --git a/src/com/android/nfc/NfcService.java b/src/com/android/nfc/NfcService.java
index 6cb8dda..80cf018 100755
--- a/src/com/android/nfc/NfcService.java
+++ b/src/com/android/nfc/NfcService.java
@@ -2109,10 +2109,14 @@
             return;
         }
 
+        mManager.doSetIsoDepTimeout(10000);
+
         for (byte[] cmd : apdus) {
             mSecureElement.doTransceive(handle, cmd);
         }
 
+        mManager.doResetIsoDepTimeout();
+
         mSecureElement.doDisconnect(handle);
 
         if (tempEnable) {