Home | History | Annotate | Download | only in main
      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"
      7         android:roundIcon="@mipmap/ic_launcher_round"
      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>