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"
|
2011-12-24 20:19:31 +01:00
|
|
|
android:versionName="1.0" >
|
2011-12-23 19:22:06 +01: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" />
|
|
|
|
|
|
|
|
<uses-sdk android:minSdkVersion="10" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/ic_launcher"
|
2011-12-27 23:02:41 +01:00
|
|
|
android:label="@string/app_name"
|
2012-04-11 13:24:12 +02:00
|
|
|
android:theme="@style/Theme.Sherlock"
|
2011-12-27 23:02:41 +01:00
|
|
|
android:name=".PodcastApp">
|
2011-12-23 19:22:06 +01:00
|
|
|
<activity
|
|
|
|
android:label="@string/app_name"
|
2011-12-28 18:18:13 +01: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>
|
2011-12-28 18:18:13 +01:00
|
|
|
<activity android:name="de.podfetcher.activity.FeedlistActivity"/>
|
|
|
|
<activity android:name="de.podfetcher.activity.AddFeedActivity"/>
|
2012-04-11 21:18:15 +02:00
|
|
|
<activity android:name="de.podfetcher.activity.FeedItemlistActivity"/>
|
2011-12-28 18:04:34 +01:00
|
|
|
|
2011-12-29 13:05:32 +01:00
|
|
|
<service android:enabled="true" android:name="de.podfetcher.service.DownloadService" />
|
2011-12-23 19:22:06 +01:00
|
|
|
</application>
|
|
|
|
</manifest>
|