notecipher / app / AndroidManifest.xml @ 156e37e4
History | View | Annotate | Download (2.5 KB)
| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
|---|---|
| 2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 |
package="info.guardianproject.notepadbot" |
| 4 |
android:versionCode="13" |
| 5 |
android:versionName="0.1" > |
| 6 |
|
| 7 |
<uses-sdk
|
| 8 |
android:minSdkVersion="10" |
| 9 |
android:targetSdkVersion="19" /> |
| 10 |
|
| 11 |
<supports-screens
|
| 12 |
android:anyDensity="true" |
| 13 |
android:largeScreens="true" |
| 14 |
android:normalScreens="true" |
| 15 |
android:smallScreens="true" /> |
| 16 |
|
| 17 |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 18 |
<uses-permission android:name="android.permission.VIBRATE" /> |
| 19 |
|
| 20 |
<application
|
| 21 |
android:name="info.guardianproject.notepadbot.App" |
| 22 |
android:allowBackup="true" |
| 23 |
android:icon="@drawable/icon" |
| 24 |
android:label="@string/app_name" |
| 25 |
android:theme="@style/AppTheme" > |
| 26 |
<activity
|
| 27 |
android:name=".NoteCipher" |
| 28 |
android:label="@string/app_name" > |
| 29 |
<intent-filter>
|
| 30 |
<action android:name="android.intent.action.MAIN" /> |
| 31 |
|
| 32 |
<category android:name="android.intent.category.LAUNCHER" /> |
| 33 |
</intent-filter>
|
| 34 |
<intent-filter>
|
| 35 |
<action android:name="android.intent.action.SEND" /> |
| 36 |
|
| 37 |
<category android:name="android.intent.category.DEFAULT" /> |
| 38 |
<category android:name="android.intent.category.ALTERNATIVE" /> |
| 39 |
<category android:name="android.intent.category.SELECTED_ALTERNATIVE" /> |
| 40 |
|
| 41 |
<data android:mimeType="*/*" /> |
| 42 |
</intent-filter>
|
| 43 |
</activity>
|
| 44 |
<activity
|
| 45 |
android:name=".NoteEdit" |
| 46 |
android:parentActivityName="info.guardianproject.notepadbot.NoteCipher" |
| 47 |
android:label="@string/app_name" > |
| 48 |
</activity>
|
| 49 |
<activity
|
| 50 |
android:name=".LockScreenActivity" |
| 51 |
android:configChanges="keyboardHidden|orientation|screenSize" |
| 52 |
android:label="@string/title_activity_lock_screen" > |
| 53 |
</activity>
|
| 54 |
|
| 55 |
<activity
|
| 56 |
android:name=".Settings" |
| 57 |
android:label="@string/settings" |
| 58 |
android:screenOrientation="portrait" |
| 59 |
android:parentActivityName="info.guardianproject.notepadbot.NoteCipher" |
| 60 |
android:configChanges="orientation|keyboardHidden" > |
| 61 |
</activity>
|
| 62 |
|
| 63 |
<service
|
| 64 |
android:name="info.guardianproject.cacheword.CacheWordService" |
| 65 |
android:enabled="true" |
| 66 |
android:exported="false" /> |
| 67 |
</application>
|
| 68 |
|
| 69 |
</manifest>
|