AntennaPod/AndroidManifest.xml

35 lines
1.4 KiB
XML
Raw Normal View History

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"
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"
android:label="@string/app_name"
2012-04-12 21:26:36 +02:00
android:theme="@style/Theme.Sherlock.Light"
android:name=".PodcastApp">
2011-12-23 19:22:06 +01:00
<activity
android:label="@string/app_name"
android:name="de.podfetcher.activity.PodfetcherActivity" >
<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-04-12 21:26:36 +02:00
<activity android:name="de.podfetcher.activity.AddFeedActivity"
android:label="@string/add_new_feed_label"/>
2012-04-11 21:18:15 +02:00
<activity android:name="de.podfetcher.activity.FeedItemlistActivity"/>
2012-04-13 16:21:34 +02:00
<activity android:name="de.podfetcher.activity.ItemviewActivity"/>
2011-12-29 13:05:32 +01:00
<service android:enabled="true" android:name="de.podfetcher.service.DownloadService" />
2012-05-30 14:57:11 +02:00
<service android:enabled="true" android:name="de.podfetcher.service.PlaybackService" />
2011-12-23 19:22:06 +01:00
</application>
</manifest>