summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
blob: 8b7101efca6a8862ed90dab1d0491da495f93bb1 (plain)
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
94
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="de.podfetcher"
    android:versionCode="1"
    android:versionName="1.0" >

    <!-- <uses-permission android:name="android.permission.ACCESS_ALL_DOWNLOADS" /> -->
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

    <uses-sdk android:minSdkVersion="10" />

    <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />

    <application
        android:name="de.podfetcher.PodcastApp"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:logo="@drawable/ic_launcher"
        android:theme="@style/Theme.Sherlock.Light.ForceOverflow" >
        <activity
            android:name="de.podfetcher.activity.PodfetcherActivity"
            android:label="@string/app_name"
            android:theme="@style/StyledIndicators" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="de.podfetcher.activity.AddFeedActivity"
            android:label="@string/add_new_feed_label" />
        <activity
            android:name="de.podfetcher.activity.FeedItemlistActivity"
            android:configChanges="orientation|screenSize" />
        <activity android:name="de.podfetcher.activity.ItemviewActivity" />
        <activity
            android:name="de.podfetcher.activity.DownloadActivity"
            android:label="@string/downloads_label" />
        <activity
            android:name="de.podfetcher.activity.MediaplayerActivity"
            android:configChanges="orientation"
            android:launchMode="singleTask"
            android:theme="@style/Theme.MediaPlayer" />

        <service
            android:name="de.podfetcher.service.DownloadService"
            android:enabled="true" />
        <service
            android:name="de.podfetcher.service.PlaybackService"
            android:enabled="true" >
        </service>

        <activity android:name=".activity.PreferenceActivity" >
        </activity>
        <activity android:name=".activity.DownloadLogActivity" >
        </activity>

        <receiver android:name=".receiver.MediaButtonReceiver" >
            <intent-filter>
                <action android:name="android.intent.action.MEDIA_BUTTON" />
            </intent-filter>
            <intent-filter>
                <action android:name="de.podfetcher.NOTIFY_BUTTON_RECEIVER"/>
            </intent-filter>
        </receiver>

        <activity android:name=".activity.FeedInfoActivity" >
        </activity>

        <service
            android:name=".service.PlayerWidgetService"
            android:enabled="true"
            android:exported="false" >
        </service>
        <receiver android:name=".receiver.PlayerWidget">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
            </intent-filter>
            <intent-filter>
                <action android:name="de.podfetcher.FORCE_WIDGET_UPDATE"/>
            </intent-filter>
            <meta-data android:resource="@xml/player_widget_info" android:name="android.appwidget.provider"/>
        </receiver>
        <receiver android:name=".receiver.FeedUpdateReceiver">
            <intent-filter>
                <action android:name="de.podfetcher.feedupdatereceiver.refreshFeeds"/>
            </intent-filter>
        </receiver>
        <activity android:name=".activity.StorageErrorActivity"></activity>
    </application>

</manifest>