AntennaPod/AndroidManifest.xml

351 lines
13 KiB
XML
Raw Normal View History

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"
package="de.danoeh.antennapod"
2014-05-29 18:23:24 +02:00
android:versionCode="37"
android:versionName="0.9.9.0">
2011-12-23 19:22:06 +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"
android:targetSdkVersion="19"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
2012-07-24 15:30:25 +02:00
<supports-screens
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"
android:xlargeScreens="true"/>
<uses-feature
android:name="android.hardware.screen.portrait"
android:required="false"/>
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false"/>
2013-03-14 11:47:40 +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"
android:backupAgent=".backup.OpmlBackupAgent"
android:restoreAnyVersion="true"
2012-07-07 13:30:17 +02:00
android:logo="@drawable/ic_launcher"
android:theme="@style/Theme.AntennaPod.Light">
<meta-data
android:name="com.google.android.backup.api_key"
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"
android:configChanges="keyboardHidden|orientation"
android:launchMode="singleTask"
android:label="@string/app_name">
<intent-filter>
<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
android:name=".activity.AudioplayerActivity"
android:launchMode="singleTop">
2013-09-25 22:11:58 +02:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="de.danoeh.antennapod.activity.MainActivity"/>
<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="file"/>
<data android:mimeType="audio/*"/>
</intent-filter>
</activity>
2012-07-07 13:30:17 +02: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"
android:enabled="true"/>
2012-07-07 13:30:17 +02:00
<service
android:name=".service.playback.PlaybackService"
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"
android:label="@string/settings_label">
2013-09-25 21:23:56 +02:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
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"
android:exported="true">
2012-06-30 15:07:53 +02:00
<intent-filter>
<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.danoeh.antennapod.NOTIFY_BUTTON_RECEIVER"/>
2012-07-07 15:05:35 +02:00
</intent-filter>
2012-07-04 10:29:17 +02:00
</receiver>
<activity android:name=".activity.FeedInfoActivity">
</activity>
2012-07-07 13:30:17 +02:00
<service
android:name=".service.playback.PlayerWidgetService"
2012-07-07 13:30:17 +02:00
android:enabled="true"
android:exported="false">
2012-07-07 13:30:17 +02:00
</service>
2012-07-12 15:41:56 +02:00
<receiver android:name=".receiver.PlayerWidget">
2012-07-07 13:30:17 +02:00
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
2012-07-07 13:30:17 +02:00
</intent-filter>
<intent-filter>
<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"/>
<intent-filter>
<action android:name="de.danoeh.antennapod.STOP_WIDGET_UPDATE"/>
</intent-filter>
2012-07-07 13:30:17 +02:00
</receiver>
<receiver android:name=".receiver.FeedUpdateReceiver">
<intent-filter>
<action android:name="de.danoeh.antennapod.feedupdatereceiver.refreshFeeds"/>
</intent-filter>
</receiver>
2012-07-12 15:41:56 +02:00
<activity android:name=".activity.StorageErrorActivity">
2012-07-12 15:41:56 +02:00
</activity>
<activity
android:name=".activity.FlattrAuthActivity"
android:label="@string/flattr_auth_label">
2012-07-12 15:41:56 +02:00
<intent-filter>
<action android:name=".activities.FlattrAuthActivity"/>
2012-07-12 15:41:56 +02:00
<category android:name="android.intent.category.DEFAULT"/>
2012-07-12 15:41:56 +02:00
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
2012-07-12 15:41:56 +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"
android:scheme="flattr4j"/>
</intent-filter>
</activity>
2012-07-24 15:30:25 +02:00
<activity
android:name=".activity.AboutActivity"
android:label="@string/about_pref">
2012-07-24 15:30:25 +02:00
</activity>
<activity
android:name=".activity.OpmlImportFromPathActivity"
android:configChanges="keyboardHidden|orientation"
android:label="@string/opml_import_label">
2012-07-24 15:30:25 +02:00
</activity>
2013-01-23 16:01:31 +01:00
<activity
android:name=".activity.OpmlImportFromIntentActivity"
android:configChanges="keyboardHidden|orientation"
android:label="@string/opml_import_label">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
2013-01-23 16:01:31 +01:00
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
2013-01-23 16:01:31 +01:00
<data
android:host="*"
android:mimeType="*/*"
android:pathPattern=".*\\.opml"
android:scheme="file"/>
2013-01-23 16:01:31 +01:00
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
2013-01-23 16:01:31 +01:00
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
2013-01-23 16:01:31 +01:00
<data
android:host="*"
android:pathPattern=".*\\.opml"
android:scheme="file"
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"
android:label="@string/opml_import_label">
2012-07-24 15:30:25 +02:00
</activity>
<activity
android:name=".activity.VideoplayerActivity"
android:configChanges="keyboardHidden|orientation"
android:screenOrientation="landscape">
2013-09-25 22:11:58 +02:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="de.danoeh.antennapod.activity.MainActivity"/>
<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="file"/>
<data android:mimeType="video/*"/>
</intent-filter>
</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"
android:value="de.danoeh.antennapod.activity.PreferenceActivity"/>
</activity>
2013-09-25 21:23:56 +02:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="de.danoeh.antennapod.activity.PreferenceActivity"/>
<activity
android:name=".activity.DefaultOnlineFeedViewActivity"
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"/>
<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"
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"
android:value="de.danoeh.antennapod.activity.PreferenceActivity"/>
2013-08-31 20:02:56 +02:00
</activity>
2013-03-14 11:47:40 +01:00
<receiver android:name=".receiver.ConnectivityActionReceiver">
2013-03-14 11:47:40 +01:00
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>
2013-03-14 11:47:40 +01:00
</intent-filter>
</receiver>
<receiver android:name=".receiver.AlarmUpdateReceiver">
2013-03-14 11:47:40 +01:00
<intent-filter>
<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>
<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"
android:scheme="package"/>
2013-03-09 21:08:24 +01:00
</intent-filter>
</receiver>
<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
</manifest>