-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
21 lines (20 loc) · 959 Bytes
/
AndroidManifest.xml
File metadata and controls
21 lines (20 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2009-2012 TouchType Ltd. All Rights Reserved.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.touchtype.chromebug">
<uses-sdk android:minSdkVersion="14"/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<service android:name="com.touchtype.chromebug.ChromeBugInputMethodService"
android:label="ChromeBugIME"
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>
<activity android:name="com.touchtype.chromebug.BugExposedActivity"
android:theme="@android:style/Theme.Dialog"/>
</application>
</manifest>