blob: 86a7b37bc4b4910231cf6908402ece84e16e3cb3 [file] [log] [blame]
Trevor Johns0af1e772016-10-18 03:15:51 -07001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.example.android.commitcontent.ime">
3
4 <application
5 android:allowBackup="false"
6 android:icon="@mipmap/ic_launcher"
Trevor Johns8a66f8c2017-02-09 00:45:30 -08007 android:roundIcon="@mipmap/ic_launcher_round"
Trevor Johns0af1e772016-10-18 03:15:51 -07008 android:label="@string/app_name"
9 android:supportsRtl="true"
10 android:theme="@style/AppTheme">
11
12 <service
13 android:name="com.example.android.commitcontent.ime.ImageKeyboard"
14 android:permission="android.permission.BIND_INPUT_METHOD">
15 <intent-filter>
16 <action android:name="android.view.InputMethod" />
17 </intent-filter>
18 <meta-data android:name="android.view.im" android:resource="@xml/method" />
19 </service>
20
21 <provider
22 android:name="android.support.v4.content.FileProvider"
23 android:authorities="com.example.android.commitcontent.ime.inputcontent"
24 android:exported="false"
25 android:grantUriPermissions="true">
26 <meta-data
27 android:name="android.support.FILE_PROVIDER_PATHS"
28 android:resource="@xml/file_paths" />
29 </provider>
30
31 </application>
32
33</manifest>