Fix inconsistent usage of tabs and spaces in the manifest

Replace all the tabs with spaces.

Change-Id: Ia1f3d48b4d4abafbb3fb75715204d057aed4a416
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index e11619d..1cb476d 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -17,45 +17,45 @@
 
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
-		package="com.android.stk"
-		android:sharedUserId="android.uid.phone">
+        package="com.android.stk"
+        android:sharedUserId="android.uid.phone">
 
     <original-package android:name="com.android.stk" />
 
     <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
 
-	<application android:icon="@drawable/ic_launcher_sim_toolkit"
-		android:label="@string/app_name"
-		android:clearTaskOnLaunch="true"
-		android:process="com.android.phone">
+    <application android:icon="@drawable/ic_launcher_sim_toolkit"
+        android:label="@string/app_name"
+        android:clearTaskOnLaunch="true"
+        android:process="com.android.phone">
 
-		<activity android:name="StkLauncherActivity"
-			android:label="@string/app_name"
-			android:enabled="false"	>
-			<intent-filter>
-				<action android:name="android.intent.action.MAIN" />
-				<category android:name="android.intent.category.LAUNCHER" />
-			</intent-filter>
-		</activity>
+        <activity android:name="StkLauncherActivity"
+            android:label="@string/app_name"
+            android:enabled="false">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
 
-		<activity android:name="StkMenuActivity"
-                    android:configChanges="orientation|screenSize|keyboardHidden|mnc|mcc"
+        <activity android:name="StkMenuActivity"
+             android:configChanges="orientation|screenSize|keyboardHidden|mnc|mcc"
              android:launchMode="singleTop">
-	         <intent-filter>
-	             <action android:name="android.intent.action.VIEW" />
-	             <action android:name="android.intent.action.PICK" />
-	             <category android:name="android.intent.category.DEFAULT" />
-	         </intent-filter>
+             <intent-filter>
+                 <action android:name="android.intent.action.VIEW" />
+                 <action android:name="android.intent.action.PICK" />
+                 <category android:name="android.intent.category.DEFAULT" />
+             </intent-filter>
          </activity>
 
          <activity android:name="StkInputActivity"
             android:configChanges="orientation|screenSize|keyboardHidden">
-			<intent-filter>
-		        <action android:name="android.intent.action.VIEW" />
-		        <action android:name="android.intent.action.EDIT" />
-		        <category android:name="android.intent.category.DEFAULT" />
-		    </intent-filter>
-		</activity>
+            <intent-filter>
+                <action android:name="android.intent.action.VIEW" />
+                <action android:name="android.intent.action.EDIT" />
+                <category android:name="android.intent.category.DEFAULT" />
+            </intent-filter>
+        </activity>
 
         <activity android:name="StkDialogActivity"
             android:theme="@android:style/Theme.Dialog"
@@ -66,18 +66,18 @@
             android:theme="@android:style/Theme.Dialog">
         </activity>
 
-		<!-- SIM Toolkit settings activity -->
-		<activity android:name="StkSettings"
-			android:label="@string/app_name">
-			<intent-filter>
-				<action android:name="android.intent.action.VIEW" />
-				<action android:name="android.intent.action.MAIN" />
-				<category
-					android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
-			</intent-filter>
-		</activity>
+        <!-- SIM Toolkit settings activity -->
+        <activity android:name="StkSettings"
+            android:label="@string/app_name">
+            <intent-filter>
+                <action android:name="android.intent.action.VIEW" />
+                <action android:name="android.intent.action.MAIN" />
+                <category
+                    android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
+            </intent-filter>
+        </activity>
 
-		<receiver android:name="com.android.stk.StkCmdReceiver">
+        <receiver android:name="com.android.stk.StkCmdReceiver">
             <intent-filter>
                 <action android:name= "android.intent.action.stk.command" />
                 <action android:name= "android.intent.action.stk.session_end" />
@@ -85,7 +85,7 @@
         </receiver>
 
         <receiver android:name="com.android.stk.BootCompletedReceiver"
-                    androidprv:primaryUserOnly="true">
+            androidprv:primaryUserOnly="true">
             <intent-filter>
                 <action android:name="android.intent.action.BOOT_COMPLETED" />
             </intent-filter>
@@ -93,5 +93,5 @@
 
         <service android:name="StkAppService" />
 
-	</application>
+    </application>
 </manifest>