Snap for 6355086 from 534aee7aaef258eb4eb9e9ae199cf8a27e937e00 to sdk-release

Change-Id: I90c8a28b2b7ed930c84c44f3fbc55df1877e1ac7
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 24a5f4d..ed79f38 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -15,26 +15,29 @@
 -->
 
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-        coreApp="true"
-        package="com.android.inputmethod.latin">
+     coreApp="true"
+     package="com.android.inputmethod.latin">
 
-    <uses-sdk android:minSdkVersion="22" android:targetSdkVersion="23" />
+    <uses-sdk android:minSdkVersion="22"
+         android:targetSdkVersion="23"/>
 
     <application android:label="@string/english_ime_name"
-            android:icon="@drawable/ic_launcher_keyboard"
-            android:supportsRtl="true"
-            android:allowBackup="true"
-            android:directBootAware="true"
-            android:theme="@android:style/Theme.DeviceDefault.InputMethod">
+         android:icon="@drawable/ic_launcher_keyboard"
+         android:supportsRtl="true"
+         android:allowBackup="true"
+         android:directBootAware="true"
+         android:theme="@android:style/Theme.DeviceDefault.InputMethod">
 
         <!-- Services -->
         <service android:name="CarLatinIME"
-                android:label="@string/english_ime_name"
-                android:permission="android.permission.BIND_INPUT_METHOD">
+             android:label="@string/english_ime_name"
+             android:permission="android.permission.BIND_INPUT_METHOD"
+             android:exported="true">
             <intent-filter>
-                <action android:name="android.view.InputMethod" />
+                <action android:name="android.view.InputMethod"/>
             </intent-filter>
-            <meta-data android:name="android.view.im" android:resource="@xml/method" />
+            <meta-data android:name="android.view.im"
+                 android:resource="@xml/method"/>
         </service>
     </application>
 </manifest>