blob: 3d30779d3da885acf851967c827fb6669e9f4ecf [file] [log] [blame]
The Android Open Source Project52d4c302009-03-03 19:29:09 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.example.android.softkeyboard">
3 <application android:label="@string/ime_name">
4 <service android:name="SoftKeyboard"
5 android:permission="android.permission.BIND_INPUT_METHOD">
6 <intent-filter>
7 <action android:name="android.view.InputMethod" />
8 </intent-filter>
9 <meta-data android:name="android.view.im" android:resource="@xml/method" />
10 </service>
Tadashi G. Takaokaec1f72d2011-10-18 18:45:44 +090011
12 <activity android:name=".ImePreferences" android:label="@string/settings_name">
13 <intent-filter>
14 <action android:name="android.intent.action.MAIN"/>
15 </intent-filter>
16 </activity>
17
The Android Open Source Project52d4c302009-03-03 19:29:09 -080018 </application>
19</manifest>