-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
83 lines (73 loc) · 3.69 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
<?xml version="1.0" encoding="utf-8"?>
<!--
# $Id$
#
# Copyright (C) 2007 Josh Guilfoyle <[email protected]>
#
# This program 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, or (at your option) any
# later version.
#
# This program 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.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.devtcg.rssreader">
<application android:icon="@drawable/icon" android:label="RSSReader">
<provider android:name=".provider.RSSReaderProvider"
android:authorities="org.devtcg.rssreader.provider.RSSReader" />
<activity android:name=".activity.ChannelList" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.PICK" />
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.rssreader.channel" />
</intent-filter>
</activity>
<activity android:name=".activity.ChannelAdd" android:label="@string/app_name">
<intent-filter android:label="New Channel">
<action android:name="android.intent.action.INSERT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.rssreader.channel" />
</intent-filter>
</activity>
<activity android:name=".activity.ChannelEdit" android:label="@string/app_name">
<intent-filter android:label="Edit Channel">
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/vnd.rssreader.channel" />
</intent-filter>
</activity>
<activity android:name=".activity.PostList" android:label="@string/app_name">
<intent-filter android:label="View Posts">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.rssreader.post" />
</intent-filter>
</activity>
<activity android:name=".activity.PostView" android:label="@string/app_name">
<intent-filter android:label="View Post">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/vnd.rssreader.post" />
</intent-filter>
</activity>
<!--
<receiver android:name=".service.ReaderService_Setup" android:process=":remote">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name=".service.ReaderService_Alarm" android:process=":remote" />
<service android:name=".service.ReaderService" android:process=":remote" />
-->
</application>
</manifest>