Add space to the separator "AND" to split the arguments when deleting contacts.

User can't delete the sim contact record with the name which included "AND" string.
We should use separator " AND " to split the arguments for the deleting contact
record.

Change-Id: I66fc91d2c0215ce45f2e59ffaf3ebc90b2cc1af4
Fixes: 71977853
diff --git a/src/java/com/android/internal/telephony/IccProvider.java b/src/java/com/android/internal/telephony/IccProvider.java
index 8feec94..76af170 100644
--- a/src/java/com/android/internal/telephony/IccProvider.java
+++ b/src/java/com/android/internal/telephony/IccProvider.java
@@ -294,7 +294,7 @@
         String[] emails = null;
         String pin2 = null;
 
-        String[] tokens = where.split("AND");
+        String[] tokens = where.split(" AND ");
         int n = tokens.length;
 
         while (--n >= 0) {