Trevor Johns | 0af1e77 | 2016-10-18 03:15:51 -0700 | [diff] [blame] | 1 | <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 Johns | 8a66f8c | 2017-02-09 00:45:30 -0800 | [diff] [blame] | 7 | android:roundIcon="@mipmap/ic_launcher_round" |
Trevor Johns | 0af1e77 | 2016-10-18 03:15:51 -0700 | [diff] [blame] | 8 | 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> |