forked from matburt/mobileorg-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
50 lines (50 loc) · 1.98 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.matburt.mobileorg"
android:versionCode="45"
android:versionName="0.4.5">
<uses-sdk android:minSdkVersion="3"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:name=".MobileOrgApplication"
android:label="MobileOrg"
android:icon="@drawable/icon">
<receiver android:name=".MobileOrgWidget"
android:label="MobileOrg Tasks">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_mobileorg" />
</receiver>
<service android:name=".MobileOrgWidget$MobileOrgWidgetService" />
<activity android:name="MobileOrgActivity"
android:label="MobileOrg">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="SettingsActivity"
android:label="MobileOrg Settings">
</activity>
<activity android:name="SimpleTextDisplay"
android:label="Org View">
</activity>
<activity android:name="EditDetailsActivity"
android:label="TODO State Selection">
</activity>
<activity android:name="OrgContextMenu"
android:label="OrgMenu">
</activity>
<activity android:name="Capture"
android:label="Org Capture">
</activity>
<activity android:name="WebDAVSettingsActivity"
android:label="WebDAV Settings">
</activity>
<activity android:name="SDCardSettingsActivity"
android:label="SDCard Settings">
</activity>
</application>
</manifest>