diff options
author | lado <herrlado@gmail.com> | 2011-10-15 02:57:34 +0200 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2011-10-15 02:57:34 +0200 |
commit | 9e369f6edd85fcd77c1ce4009df63d9993e53d18 (patch) | |
tree | 86f9fc0f092354048cdb51a828bf2e61e87fc40b /vdrmanager/AndroidManifest.xml | |
parent | e11ed9dce9afefb3818d64ac95ef24edf9f9c041 (diff) | |
download | vdr-manager-9e369f6edd85fcd77c1ce4009df63d9993e53d18.tar.gz vdr-manager-9e369f6edd85fcd77c1ce4009df63d9993e53d18.tar.bz2 |
implemented search (not yet 100% clean) and time search not know if
works, not yet tested.
Added imdb support
Diffstat (limited to 'vdrmanager/AndroidManifest.xml')
-rw-r--r-- | vdrmanager/AndroidManifest.xml | 75 |
1 files changed, 57 insertions, 18 deletions
diff --git a/vdrmanager/AndroidManifest.xml b/vdrmanager/AndroidManifest.xml index c22a0e8..35fb221 100644 --- a/vdrmanager/AndroidManifest.xml +++ b/vdrmanager/AndroidManifest.xml @@ -1,39 +1,77 @@ <?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" + 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"> + <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.EpgSearchActivity" /> - + <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" /> + 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"></activity> + 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"></activity> + 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"></activity> - <activity android:name=".gui.TimerDetailsActivity"></activity> + 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"></activity> - <activity android:name=".gui.EpgSearchActivity"> + 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> @@ -42,10 +80,11 @@ </activity> <activity android:name=".gui.EpgSearchTimesListActivity"></activity> - - - <provider android:name=".data.db.DataProvider" android:authorities="de.bjusystems.vdrmanager.provider" /> - + + + <provider android:name=".data.db.DataProvider" + android:authorities="de.bjusystems.vdrmanager.provider" /> + </application> |