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-06-15 17:54:42 +02:00
|
|
|
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION"/>
|
2011-12-23 19:22:06 +01:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/ic_launcher"
|
2012-05-31 12:21:58 +02:00
|
|
|
android:label="@string/app_name"
|
2012-06-26 13:37:41 +02:00
|
|
|
android:theme="@style/Theme.Sherlock.Light.ForceOverflow"
|
2012-06-02 23:50:12 +02:00
|
|
|
android:name="de.podfetcher.PodcastApp">
|
2011-12-23 19:22:06 +01:00
|
|
|
<activity
|
|
|
|
android:label="@string/app_name"
|
2012-05-31 12:21:58 +02:00
|
|
|
android:name="de.podfetcher.activity.PodfetcherActivity" >
|
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" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-05-31 12:21:58 +02:00
|
|
|
<activity android:name="de.podfetcher.activity.AddFeedActivity"
|
|
|
|
android:label="@string/add_new_feed_label"/>
|
2012-06-17 13:09:02 +02:00
|
|
|
<activity android:name="de.podfetcher.activity.FeedItemlistActivity" android:configChanges="orientation|screenSize"/>
|
2012-05-31 12:21:58 +02:00
|
|
|
<activity android:name="de.podfetcher.activity.ItemviewActivity"/>
|
|
|
|
<activity android:name="de.podfetcher.activity.DownloadActivity"
|
|
|
|
android:label="@string/downloads_label"/>
|
2012-06-05 21:39:51 +02:00
|
|
|
<activity android:name="de.podfetcher.activity.MediaplayerActivity" android:launchMode="singleTask"/>
|
2012-05-31 12:21:58 +02:00
|
|
|
|
|
|
|
<service android:enabled="true" android:name="de.podfetcher.service.DownloadService" />
|
2012-06-17 15:03:21 +02:00
|
|
|
<service android:enabled="true" android:name="de.podfetcher.service.PlaybackService" />
|
2012-06-17 18:42:09 +02:00
|
|
|
<activity android:name=".activity.PreferenceActivity"></activity>
|
|
|
|
<activity android:name=".activity.DownloadLogActivity"></activity>
|
2011-12-23 19:22:06 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|