blob: 86a7b37bc4b4910231cf6908402ece84e16e3cb3 [file] [log] [blame]
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.commitcontent.ime">
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service
android:name="com.example.android.commitcontent.ime.ImageKeyboard"
android:permission="android.permission.BIND_INPUT_METHOD">
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
<meta-data android:name="android.view.im" android:resource="@xml/method" />
</service>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.example.android.commitcontent.ime.inputcontent"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>