2011-12-23 19:22:06 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-01-10 16:22:00 +01:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-17 17:00:13 +01:00
|
|
|
package="de.danoeh.antennapod"
|
2014-06-09 11:26:17 +02:00
|
|
|
android:versionCode="38"
|
|
|
|
android:versionName="0.9.9.1">
|
2011-12-23 19:22:06 +01:00
|
|
|
|
2014-03-17 17:00:13 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
2011-12-23 19:22:06 +01:00
|
|
|
|
2012-07-24 15:30:25 +02:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="10"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:targetSdkVersion="19"/>
|
2012-09-25 10:47:29 +02:00
|
|
|
|
2014-03-17 17:00:13 +01:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2012-07-24 15:30:25 +02:00
|
|
|
|
|
|
|
<supports-screens
|
2012-09-25 10:47:29 +02:00
|
|
|
android:anyDensity="true"
|
2012-07-24 15:30:25 +02:00
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
2012-09-19 12:02:28 +02:00
|
|
|
android:smallScreens="true"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:xlargeScreens="true"/>
|
2012-09-25 10:47:29 +02:00
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.screen.portrait"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:required="false"/>
|
2013-04-25 18:34:00 +02:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.touchscreen"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:required="false"/>
|
2013-03-14 11:47:40 +01:00
|
|
|
|
2014-03-17 17:00:13 +01:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
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"
|
2014-03-21 15:11:31 +01:00
|
|
|
android:backupAgent=".backup.OpmlBackupAgent"
|
2014-03-23 19:49:18 +01:00
|
|
|
android:restoreAnyVersion="true"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:logo="@drawable/ic_launcher"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:theme="@style/Theme.AntennaPod.Light">
|
2014-03-21 15:11:31 +01:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.backup.api_key"
|
2014-05-25 15:40:12 +02:00
|
|
|
android:value="AEdPqrEAAAAI3a05VToCTlqBymJrbFGaKQMvF-bBAuLsOdavBA"/>
|
|
|
|
|
2011-12-23 19:22:06 +01:00
|
|
|
<activity
|
2012-07-13 12:23:47 +02:00
|
|
|
android:name=".activity.MainActivity"
|
2012-09-25 10:47:29 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2014-04-21 19:33:14 +02:00
|
|
|
android:launchMode="singleTask"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:label="@string/app_name">
|
2011-12-24 20:19:31 +01:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2011-12-23 19:22:06 +01:00
|
|
|
</intent-filter>
|
2014-04-17 20:33:02 +02:00
|
|
|
</activity>
|
2012-07-07 13:30:17 +02:00
|
|
|
<activity
|
2012-08-04 19:07:47 +02:00
|
|
|
android:name=".activity.AudioplayerActivity"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:launchMode="singleTop">
|
2013-09-25 22:11:58 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:value="de.danoeh.antennapod.activity.MainActivity"/>
|
2013-02-27 22:05:13 +01:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
2013-02-27 22:05:13 +01:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2013-02-27 22:05:13 +01:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<data android:scheme="file"/>
|
|
|
|
<data android:mimeType="audio/*"/>
|
2013-02-27 22:05:13 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
2014-03-17 17:00:13 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.DownloadAuthenticationActivity"
|
|
|
|
android:launchMode="singleInstance"/>
|
|
|
|
|
2012-07-07 13:30:17 +02:00
|
|
|
<service
|
2012-08-16 15:09:49 +02:00
|
|
|
android:name=".service.download.DownloadService"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:enabled="true"/>
|
2012-07-07 13:30:17 +02:00
|
|
|
<service
|
2013-12-15 02:25:10 +01:00
|
|
|
android:name=".service.playback.PlaybackService"
|
2013-10-19 18:47:35 +02:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="true">
|
2012-06-30 15:07:53 +02:00
|
|
|
</service>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
2013-09-01 13:49:19 +02:00
|
|
|
<service
|
|
|
|
android:name=".service.GpodnetSyncService"
|
|
|
|
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-24 15:30:25 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:label="@string/settings_label">
|
2013-09-25 21:23:56 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:value="de.danoeh.antennapod.activity.MainActivity"/>
|
2012-07-07 13:30:17 +02:00
|
|
|
</activity>
|
|
|
|
|
2013-01-10 16:22:00 +01:00
|
|
|
<receiver
|
|
|
|
android:name=".receiver.MediaButtonReceiver"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:exported="true">
|
2012-06-30 15:07:53 +02:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +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>
|
2013-08-24 14:23:31 +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>
|
2014-05-19 01:05:48 +02:00
|
|
|
|
|
|
|
<activity android:name=".activity.FeedInfoActivity">
|
|
|
|
</activity>
|
|
|
|
|
2012-07-07 13:30:17 +02:00
|
|
|
<service
|
2013-12-15 02:25:10 +01:00
|
|
|
android:name=".service.playback.PlayerWidgetService"
|
2012-07-07 13:30:17 +02:00
|
|
|
android:enabled="true"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:exported="false">
|
2012-07-07 13:30:17 +02:00
|
|
|
</service>
|
2012-07-12 15:41:56 +02:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<receiver android:name=".receiver.PlayerWidget">
|
2012-07-07 13:30:17 +02:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
2012-07-07 13:30:17 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +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"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:resource="@xml/player_widget_info"/>
|
2012-09-25 10:47:29 +02:00
|
|
|
|
2012-09-05 14:19:37 +02:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="de.danoeh.antennapod.STOP_WIDGET_UPDATE"/>
|
2012-09-05 14:19:37 +02:00
|
|
|
</intent-filter>
|
2012-07-07 13:30:17 +02:00
|
|
|
</receiver>
|
2013-08-24 14:23:31 +02:00
|
|
|
<receiver android:name=".receiver.FeedUpdateReceiver">
|
2012-07-08 13:40:10 +02:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +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
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<activity android:name=".activity.StorageErrorActivity">
|
2012-07-12 15:41:56 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activity.FlattrAuthActivity"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:label="@string/flattr_auth_label">
|
2012-07-12 15:41:56 +02:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name=".activities.FlattrAuthActivity"/>
|
2012-07-12 15:41:56 +02:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2012-07-12 15:41:56 +02:00
|
|
|
</intent-filter>
|
2012-07-12 13:36:47 +02:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
2012-07-12 15:41:56 +02:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2012-07-12 15:41:56 +02:00
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="de.danoeh.antennapod"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:scheme="flattr4j"/>
|
2012-07-12 13:36:47 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-07-24 15:30:25 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.AboutActivity"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:label="@string/about_pref">
|
2012-07-24 15:30:25 +02:00
|
|
|
</activity>
|
|
|
|
<activity
|
2013-01-23 14:44:28 +01:00
|
|
|
android:name=".activity.OpmlImportFromPathActivity"
|
2012-09-25 10:47:29 +02:00
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:label="@string/opml_import_label">
|
2012-07-24 15:30:25 +02:00
|
|
|
</activity>
|
2013-01-23 16:01:31 +01:00
|
|
|
<activity
|
2013-02-23 12:10:51 +01:00
|
|
|
android:name=".activity.OpmlImportFromIntentActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:label="@string/opml_import_label">
|
2013-02-23 12:10:51 +01:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
2013-01-23 16:01:31 +01:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2013-01-23 16:01:31 +01:00
|
|
|
|
|
|
|
<data
|
2013-02-23 12:10:51 +01:00
|
|
|
android:host="*"
|
2013-06-25 18:55:05 +02:00
|
|
|
android:mimeType="*/*"
|
2013-02-23 12:10:51 +01:00
|
|
|
android:pathPattern=".*\\.opml"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:scheme="file"/>
|
2013-01-23 16:01:31 +01:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
2013-01-23 16:01:31 +01:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2013-01-23 16:01:31 +01:00
|
|
|
|
2013-02-23 12:10:51 +01:00
|
|
|
<data
|
|
|
|
android:host="*"
|
|
|
|
android:pathPattern=".*\\.opml"
|
2013-06-25 18:55:05 +02:00
|
|
|
android:scheme="file"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:mimeType="text/x-opml"/>
|
2013-01-23 16:01:31 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-07-24 15:30:25 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.OpmlFeedChooserActivity"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:label="@string/opml_import_label">
|
2012-07-24 15:30:25 +02:00
|
|
|
</activity>
|
2012-09-25 10:47:29 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activity.VideoplayerActivity"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:screenOrientation="landscape">
|
2013-09-25 22:11:58 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:value="de.danoeh.antennapod.activity.MainActivity"/>
|
2013-02-28 12:38:56 +01:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
2013-02-28 12:38:56 +01:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2013-02-28 12:38:56 +01:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<data android:scheme="file"/>
|
|
|
|
<data android:mimeType="video/*"/>
|
2013-02-28 12:38:56 +01:00
|
|
|
</intent-filter>
|
2012-09-25 10:47:29 +02:00
|
|
|
</activity>
|
2013-01-10 16:22:00 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.DirectoryChooserActivity"
|
2013-09-25 21:23:56 +02:00
|
|
|
android:label="@string/choose_data_directory">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:value="de.danoeh.antennapod.activity.PreferenceActivity"/>
|
|
|
|
</activity>
|
2014-05-25 15:40:12 +02:00
|
|
|
|
2013-09-25 21:23:56 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:value="de.danoeh.antennapod.activity.PreferenceActivity"/>
|
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.DefaultOnlineFeedViewActivity"
|
2014-05-25 15:40:12 +02:00
|
|
|
android:configChanges="orientation">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="de.danoeh.antennapod.activity.MainActivity"/>
|
|
|
|
|
|
|
|
<!-- URLs ending with '.xml' or '.rss' -->
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
|
|
|
|
<data android:scheme="http"/>
|
|
|
|
<data android:scheme="https"/>
|
|
|
|
<data android:host="*"/>
|
|
|
|
<data android:pathPattern=".*\\.xml"/>
|
|
|
|
<data android:pathPattern=".*\\.rss"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<!-- Feedburner URLs -->
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
|
|
|
|
<data android:scheme="http"/>
|
|
|
|
<data android:scheme="https"/>
|
|
|
|
<data android:host="feeds.feedburner.com"/>
|
|
|
|
<data android:host="feedproxy.google.com"/>
|
|
|
|
<data android:host="feeds2.feedburner.com"/>
|
|
|
|
<data android:host="feedsproxy.google.com"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<!-- Files with mimeType rss/xml/atom -->
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
|
|
|
|
<data android:scheme="http"/>
|
|
|
|
<data android:scheme="https"/>
|
|
|
|
<data android:mimeType="text/xml"/>
|
|
|
|
<data android:mimeType="application/rss+xml"/>
|
|
|
|
<data android:mimeType="application/atom+xml"/>
|
|
|
|
<data android:mimeType="application/xml"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<!-- Podcast protocols -->
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
|
|
|
2014-06-15 21:22:36 +02:00
|
|
|
<data android:scheme="itpc"/>
|
2014-05-25 15:40:12 +02:00
|
|
|
<data android:scheme="pcast"/>
|
|
|
|
<data android:scheme="feed"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
|
|
|
<data android:mimeType="text/plain"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</activity>
|
2013-03-14 11:47:40 +01:00
|
|
|
|
2013-08-31 20:02:56 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activity.gpoddernet.GpodnetAuthenticationActivity"
|
|
|
|
android:configChanges="orientation"
|
2013-09-02 15:13:00 +02:00
|
|
|
android:label="@string/gpodnet_auth_label"
|
|
|
|
android:screenOrientation="portrait">
|
2013-08-31 20:02:56 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name=".activity.gpoddernet.GpodnetAuthenticationActivity"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
2013-09-04 21:04:53 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-03-17 17:00:13 +01:00
|
|
|
android:value="de.danoeh.antennapod.activity.PreferenceActivity"/>
|
2013-08-31 20:02:56 +02:00
|
|
|
</activity>
|
|
|
|
|
2013-03-14 11:47:40 +01:00
|
|
|
|
2013-08-24 14:23:31 +02:00
|
|
|
<receiver android:name=".receiver.ConnectivityActionReceiver">
|
2013-03-14 11:47:40 +01:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
|
2013-03-14 11:47:40 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2013-08-24 14:23:31 +02:00
|
|
|
<receiver android:name=".receiver.AlarmUpdateReceiver">
|
2013-03-14 11:47:40 +01:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED"/>
|
2013-03-14 11:47:40 +01:00
|
|
|
</intent-filter>
|
2013-03-09 21:08:24 +01:00
|
|
|
<intent-filter>
|
2013-08-24 14:23:31 +02:00
|
|
|
<action android:name="android.intent.action.PACKAGE_REPLACED"/>
|
2013-04-04 12:30:28 +02:00
|
|
|
|
2013-03-14 11:47:40 +01:00
|
|
|
<data
|
|
|
|
android:path="de.danoeh.antennapod"
|
2013-08-24 14:23:31 +02:00
|
|
|
android:scheme="package"/>
|
2013-03-09 21:08:24 +01:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2014-03-12 17:11:46 +01:00
|
|
|
<receiver android:name=".receiver.SPAReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="de.danoeh.antennapdsp.intent.SP_APPS_QUERY_FEEDS_RESPONSE"/>
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2011-12-23 19:22:06 +01:00
|
|
|
</application>
|
2012-07-07 13:30:17 +02:00
|
|
|
|
2013-04-25 18:34:00 +02:00
|
|
|
</manifest>
|