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"
|
2012-07-13 12:23:47 +02:00
|
|
|
package="de.danoeh.antennapod"
|
2011-12-23 19:22:06 +01:00
|
|
|
android:versionCode="1"
|
2012-07-20 13:01:26 +02:00
|
|
|
android:versionName="0.8" >
|
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
|
|
|
|
2012-07-15 17:49:26 +02:00
|
|
|
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="14"/>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
|
2012-07-18 17:36:44 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2012-07-20 13:01:26 +02:00
|
|
|
<supports-screens android:normalScreens="true" android:xlargeScreens="true" android:smallScreens="false" android:largeScreens="true"/>
|
2011-12-23 19:22:06 +01:00
|
|
|
|
|
|
|
<application
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name="de.danoeh.antennapod.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"
|
2012-07-20 13:01:26 +02:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.ForceOverflow" android:debuggable="false">
|
2011-12-23 19:22:06 +01:00
|
|
|
<activity
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name=".activity.MainActivity"
|
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
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name="de.danoeh.antennapod.activity.AddFeedActivity"
|
2012-07-14 19:58:13 +02:00
|
|
|
android:label="@string/add_new_feed_label" android:configChanges="keyboardHidden|orientation">
|
2012-07-14 12:08:48 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="text/plain"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-07-07 13:30:17 +02:00
|
|
|
<activity
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name="de.danoeh.antennapod.activity.FeedItemlistActivity"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:configChanges="orientation|screenSize" />
|
2012-07-13 12:23:47 +02:00
|
|
|
<activity android:name="de.danoeh.antennapod.activity.ItemviewActivity" />
|
2012-07-07 13:30:17 +02:00
|
|
|
<activity
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name="de.danoeh.antennapod.activity.DownloadActivity"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:label="@string/downloads_label" />
|
|
|
|
<activity
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name="de.danoeh.antennapod.activity.MediaplayerActivity"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:configChanges="orientation"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@style/Theme.MediaPlayer" />
|
|
|
|
|
|
|
|
<service
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name="de.danoeh.antennapod.service.DownloadService"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:enabled="true" />
|
|
|
|
<service
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name="de.danoeh.antennapod.service.PlaybackService"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:enabled="true" >
|
2012-06-30 15:07:53 +02:00
|
|
|
</service>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
2012-07-12 15:41:56 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.PreferenceActivity"
|
2012-07-16 16:37:59 +02:00
|
|
|
android:label="@string/settings_label" android:configChanges="keyboardHidden|orientation">
|
2012-07-07 13:30:17 +02:00
|
|
|
</activity>
|
2012-07-12 15:41:56 +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>
|
2012-07-13 12:23:47 +02:00
|
|
|
<action android:name="de.danoeh.antennapod.NOTIFY_BUTTON_RECEIVER" />
|
2012-07-07 15:05:35 +02:00
|
|
|
</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>
|
2012-07-12 15:41:56 +02:00
|
|
|
|
|
|
|
<receiver android:name=".receiver.PlayerWidget" >
|
2012-07-07 13:30:17 +02:00
|
|
|
<intent-filter>
|
2012-07-12 15:41:56 +02:00
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
2012-07-07 13:30:17 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2012-07-13 12:23:47 +02:00
|
|
|
<action android:name="de.danoeh.antennapod.FORCE_WIDGET_UPDATE" />
|
2012-07-07 13:30:17 +02:00
|
|
|
</intent-filter>
|
2012-07-12 15:41:56 +02:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/player_widget_info" />
|
2012-07-07 13:30:17 +02:00
|
|
|
</receiver>
|
2012-07-12 15:41:56 +02:00
|
|
|
<receiver android:name=".receiver.FeedUpdateReceiver" >
|
2012-07-08 13:40:10 +02:00
|
|
|
<intent-filter>
|
2012-07-13 12:23:47 +02:00
|
|
|
<action android:name="de.danoeh.antennapod.feedupdatereceiver.refreshFeeds" />
|
2012-07-08 13:40:10 +02:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2012-07-12 15:41:56 +02:00
|
|
|
|
|
|
|
<activity android:name=".activity.StorageErrorActivity" >
|
|
|
|
</activity>
|
|
|
|
<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>
|
2012-07-12 13:36:47 +02:00
|
|
|
<intent-filter>
|
2012-07-12 15:41:56 +02:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="de.danoeh.antennapod"
|
|
|
|
android:scheme="flattr4j" />
|
2012-07-12 13:36:47 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-07-15 15:55:42 +02:00
|
|
|
<activity android:label="@string/about_pref" android:name=".activity.AboutActivity" android:theme="@style/Theme.Sherlock.Light.NoActionBar"></activity>
|
2012-07-23 13:50:08 +02:00
|
|
|
<activity android:label="@string/opml_import_label" android:name=".activity.OpmlImportActivity"></activity>
|
2011-12-23 19:22:06 +01:00
|
|
|
</application>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
|
|
|
</manifest>
|