Parameter error when call "new IccAPDUArgument"

Parameters passed in the wrong order for IccAPDUArgument contructor.

Bug: 17810217
Change-Id: I4e886db8d1efc24e1b423c95c2cca4241dd700b1
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index 5d00163..26e31b0 100644
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -1674,7 +1674,7 @@
 
         IccIoResult response =
             (IccIoResult)sendRequest(CMD_EXCHANGE_SIM_IO,
-                    new IccAPDUArgument(fileID, command, -1, p1, p2, p3, filePath));
+                    new IccAPDUArgument(-1, fileID, command, p1, p2, p3, filePath));
 
         if (DBG) {
           log("Exchange SIM_IO [R]" + response);