<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
	package="de.bjusystems.vdrmanager" android:versionName="0.2_12102011"
	android:versionCode="02">
	<application android:icon="@drawable/app_logo"
		android:label="@string/app_name" android:debuggable="true"
		android:name=".app.VdrManagerApp">
		<activity android:label="@string/app_name" android:name=".gui.VdrManagerActivity">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>

			<intent-filter>
				<action android:name="android.intent.action.SEARCH" />
			</intent-filter>
			<meta-data android:name="android.app.default_searchable"
				android:value=".gui.EpgSearchListActivity" />

		</activity>

		<activity android:name=".gui.TimeEpgListActivity"
			android:configChanges="orientation" />
		<activity android:name=".gui.EventEpgListActivity"
			android:configChanges="orientation">
			<intent-filter>
				<action android:name="android.intent.action.SEARCH" />
			</intent-filter>
			<meta-data android:name="android.app.default_searchable"
				android:value=".gui.EpgSearchListActivity" />
		</activity>
		<activity android:name=".gui.TimerListActivity"
			android:configChanges="orientation">
			<intent-filter>
				<action android:name="android.intent.action.SEARCH" />
			</intent-filter>
			<meta-data android:name="android.app.default_searchable"
				android:value=".gui.EpgSearchListActivity" />
		</activity>
		<activity android:name=".gui.PreferencesActivity"
			android:configChanges="orientation"></activity>
		<activity android:name=".gui.ChannelListActivity"
			android:configChanges="orientation">
			<intent-filter>
				<action android:name="android.intent.action.SEARCH" />
			</intent-filter>
			<meta-data android:name="android.app.default_searchable"
				android:value=".gui.EpgSearchListActivity" />
		</activity>
		<activity android:name=".gui.EpgDetailsActivity"
			android:configChanges="orientation">
			<intent-filter>
				<action android:name="android.intent.action.SEARCH" />
			</intent-filter>
			<meta-data android:name="android.app.default_searchable"
				android:value=".gui.EpgSearchListActivity" />
		</activity>
		<activity android:name=".gui.TimerDetailsActivity">
			<intent-filter>
				<action android:name="android.intent.action.SEARCH" />
			</intent-filter>
			<meta-data android:name="android.app.default_searchable"
				android:value=".gui.EpgSearchListActivity" />
		</activity>
		<activity android:name=".gui.RecordingListActivity"
			android:configChanges="orientation">
			<intent-filter>
				<action android:name="android.intent.action.SEARCH" />
			</intent-filter>
			<meta-data android:name="android.app.default_searchable"
				android:value=".gui.EpgSearchListActivity" />
		</activity>
		<activity android:name=".gui.EpgSearchListActivity"
			android:configChanges="orientation">
			<intent-filter>
				<action android:name="android.intent.action.SEARCH" />
			</intent-filter>
			<meta-data android:name="android.app.searchable"
				android:resource="@xml/searchable" />

		</activity>
		<activity android:name=".gui.EpgSearchTimesListActivity"></activity>


		<provider android:name=".data.db.DataProvider"
			android:authorities="de.bjusystems.vdrmanager.provider" />

	</application>


	<uses-permission android:name="android.permission.INTERNET"></uses-permission>

	<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" />

</manifest>