AntennaPod/AndroidManifest.xml

94 lines
3.7 KiB
XML

<?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>