forked from todotxt/todo.txt-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
93 lines (80 loc) · 4.08 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="utf-8"?>
<!--
Todo.txt Touch/AndroidManifest.xml
Copyright (c) 2009-2011 Gina Trapani, mathias, Hrayr Artunyan, Stephen Henderson, Tormod Haugen
LICENSE:
This file is part of Todo.txt Touch, an Android app for managing your todo.txt file (http://todotxt.com).
Todo.txt Touch is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any
later version.
Todo.txt Touch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with Todo.txt Touch. If not, see
<http://www.gnu.org/licenses/>.
@author Gina Trapani <ginatrapani[at]gmail[dot]com>
@author mathias <mathias[at]x2[dot](none)>
@author Hrayr Artunyan <hrayr[dot]artunyan[at]gmail[dot]com>
@author Stephen Henderson <me[at]steveh[dot]ca>
@author mathias <mathias[at]ws7862[dot](none)>
@author Hrayr Artunyan <hrayr[at]Hrayr-Artunyans-MacBook-Pro[dot]local>
@author Tormod Haugen <tormodh[at]gmail[dot]com>
@license http://www.gnu.org/licenses/gpl.html
@copyright 2009-2011 Gina Trapani, mathias, Hrayr Artunyan, Stephen Henderson, Tormod Haugen
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.todotxt.todotxttouch" android:versionName="0.2"
android:versionCode="16">
<!-- Warning 'is lower than the project target API level' should be ok -->
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:name=".TodoApplication" android:icon="@drawable/todotxt_touch_icon"
android:label="@string/app_label" android:debuggable="true">
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" android:resizeable="true" />
<activity android:name=".LoginScreen" android:label="@string/app_label"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Filter" android:label="Filter"
android:theme="@android:style/Theme.NoTitleBar" />
<activity android:name=".Preferences" android:label="@string/set_preferences" />
<activity android:name=".AddTask" android:label="@string/addtask"
android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="orientation|keyboardHidden" android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity-alias android:name=".AddTaskShortcut"
android:targetActivity=".AddTask" android:label="@string/shortcut_addtask_name">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity-alias>
<activity-alias android:name=".AddTaskShare"
android:targetActivity=".AddTask" android:label="@string/share_addtask_name">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity-alias>
<activity android:name=".HelpActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
<activity android:name=".TodoTxtTouch" android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
</application>
</manifest>