2011-12-23 19:22:06 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="de.podfetcher"
|
|
|
|
android:versionCode="1"
|
2012-05-31 12:21:58 +02:00
|
|
|
android:versionName="1.0" >
|
2011-12-23 19:22:06 +01:00
|
|
|
|
2012-05-31 12:21:58 +02:00
|
|
|
<!-- <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" />
|
2011-12-23 19:22:06 +01:00
|
|
|
|
|
|
|
<uses-sdk android:minSdkVersion="10" />
|
2012-07-07 13:30:17 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
|
2011-12-23 19:22:06 +01:00
|
|
|
|
|
|
|
<application
|
2012-07-07 13:30:17 +02:00
|
|
|
android:name="de.podfetcher.PodcastApp"
|
2011-12-23 19:22:06 +01:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2012-05-31 12:21:58 +02:00
|
|
|
android:label="@string/app_name"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:logo="@drawable/ic_launcher"
|
|
|
|
android:theme="@style/Theme.Sherlock.Light.ForceOverflow" >
|
2011-12-23 19:22:06 +01:00
|
|
|
<activity
|
2012-07-07 13:30:17 +02:00
|
|
|
android:name="de.podfetcher.activity.PodfetcherActivity"
|
2011-12-23 19:22:06 +01:00
|
|
|
android:label="@string/app_name"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:theme="@style/StyledIndicators" >
|
2011-12-24 20:19:31 +01:00
|
|
|
<intent-filter>
|
2011-12-23 19:22:06 +01:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2012-07-07 13:30:17 +02:00
|
|
|
|
2011-12-23 19:22:06 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-07-07 13:30:17 +02:00
|
|
|
<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" >
|
2012-06-30 15:07:53 +02:00
|
|
|
</service>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
2012-07-11 20:52:51 +02:00
|
|
|
<activity android:name=".activity.PreferenceActivity" android:label="@string/settings_label">
|
2012-07-07 13:30:17 +02:00
|
|
|
</activity>
|
2012-07-11 20:52:51 +02:00
|
|
|
<activity android:name=".activity.DownloadLogActivity" android:label="@string/download_log_label">
|
2012-07-07 13:30:17 +02:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
<receiver android:name=".receiver.MediaButtonReceiver" >
|
2012-06-30 15:07:53 +02:00
|
|
|
<intent-filter>
|
2012-07-07 13:30:17 +02:00
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
2012-06-30 15:07:53 +02:00
|
|
|
</intent-filter>
|
2012-07-07 15:05:35 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="de.podfetcher.NOTIFY_BUTTON_RECEIVER"/>
|
|
|
|
</intent-filter>
|
2012-07-04 10:29:17 +02:00
|
|
|
</receiver>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
|
|
|
<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>
|
2012-07-08 13:40:10 +02:00
|
|
|
<receiver android:name=".receiver.FeedUpdateReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="de.podfetcher.feedupdatereceiver.refreshFeeds"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2012-07-09 22:14:36 +02:00
|
|
|
<activity android:name=".activity.StorageErrorActivity"></activity>
|
2012-07-12 13:36:47 +02:00
|
|
|
<activity android:name=".activity.FlattrAuthActivity" android:label="@string/flattr_auth_label">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name=".activities.FlattrAuthActivity"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2011-12-23 19:22:06 +01:00
|
|
|
</application>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
|
|
|
</manifest>
|