AndroidManifest.xml raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android">
3
4 <application
5 android:allowBackup="true"
6 android:icon="@mipmap/ic_launcher"
7 android:label="@string/app_name"
8 android:roundIcon="@mipmap/ic_launcher"
9 android:supportsRtl="true"
10 android:theme="@style/Theme.CipherKeys">
11
12 <service
13 android:name="org.cipherkeys.ime.CipherIME"
14 android:label="CipherKeys Keyboard"
15 android:permission="android.permission.BIND_INPUT_METHOD"
16 android:exported="true">
17 <intent-filter>
18 <action android:name="android.view.InputMethod"/>
19 </intent-filter>
20 <meta-data android:name="android.view.im" android:resource="@xml/method"/>
21 </service>
22
23 <activity
24 android:name="org.cipherkeys.settings.CipherSettingsActivity"
25 android:label="CipherKeys"
26 android:exported="true">
27 <intent-filter>
28 <action android:name="android.intent.action.MAIN"/>
29 <category android:name="android.intent.category.LAUNCHER"/>
30 </intent-filter>
31 <intent-filter>
32 <action android:name="android.intent.action.APPLICATION_PREFERENCES" />
33 <category android:name="android.intent.category.DEFAULT" />
34 </intent-filter>
35 </activity>
36
37 </application>
38 </manifest>
39