summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshwini Oruganti <ashfall@google.com>2020-04-01 00:01:28 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-04-01 00:01:28 +0000
commitdec4510da66c6f38636eff4e5175e6af51d18f31 (patch)
treeb111d4be8df27ec2039f8a213c007ecfa82b74fc
parent3cf79c7e126dcc52a99ea6f2932717d6917df665 (diff)
parent08f5c1e4139b63a1e0b219ce1ea30dd9f1de0ab8 (diff)
downloadLatinIME-dec4510da66c6f38636eff4e5175e6af51d18f31.tar.gz
Add an exported flag in manifest am: 534aee7aae am: 08f5c1e413
Change-Id: I1209e449f79a4b702d73814182b6898a1172156f
-rw-r--r--AndroidManifest.xml27
1 files changed, 15 insertions, 12 deletions
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>