diff options
author | lado <herrlado@gmail.com> | 2013-03-15 16:01:41 +0100 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2013-03-15 16:01:41 +0100 |
commit | 93d49dce8c4207f81cffc58b08550fac2a6de2b9 (patch) | |
tree | 35589110a2a295b8c41f26a834f659e12868ec25 | |
parent | b2f9eb685420ee3f11414d4ace3c9f9adf1d0a4c (diff) | |
download | vdr-manager-93d49dce8c4207f81cffc58b08550fac2a6de2b9.tar.gz vdr-manager-93d49dce8c4207f81cffc58b08550fac2a6de2b9.tar.bz2 |
Zone Picke
-rw-r--r-- | vdrmanager/AndroidManifest.xml | 264 |
1 files changed, 152 insertions, 112 deletions
diff --git a/vdrmanager/AndroidManifest.xml b/vdrmanager/AndroidManifest.xml index f473626..5597ec1 100644 --- a/vdrmanager/AndroidManifest.xml +++ b/vdrmanager/AndroidManifest.xml @@ -1,116 +1,156 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="de.bjusystems.vdrmanager" android:versionName="0.6.0" - android:versionCode="600"> - - - - <uses-permission android:name="android.permission.INTERNET"/> - <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> - <uses-permission android:name="android.permission.BROADCAST_SMS"/> - - <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="14" /> - - <application android:icon="@drawable/app_logo" - android:label="@string/app_name" - android:hardwareAccelerated="true" - android:name=".app.VdrManagerApp"> - <activity android:label="@string/app_name" android:name=".gui.VdrManagerActivity" - android:clearTaskOnLaunch="true" - android:theme="@style/Theme.Sherlock" - android:configChanges="locale"> - <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|locale|screenSize" /> - <activity android:name=".gui.EventEpgListActivity" - android:configChanges="orientation|locale|screenSize"> - <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|locale|screenSize"> - <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|locale|screenSize"/> - - <activity android:name=".gui.ChannelListActivity" - android:configChanges="orientation|locale|screenSize"> - <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|locale|screenSize"> - <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" android:configChanges="orientation|locale|keyboardHidden|screenSize" - android:windowSoftInputMode="stateHidden" > - <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|locale|screenSize"> - <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:launchMode="singleTask" - android:configChanges="orientation|locale|screenSize"> - <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" android:configChanges="orientation|locale|screenSize"/> - - <activity android:name=".gui.VdrListActivity" android:configChanges="orientation|locale|screenSize"/> - <activity android:name=".gui.VdrPreferencesActivity" android:configChanges="orientation|locale|screenSize"/> - - - <activity android:name=".backup.BackupActivity" android:configChanges="orientation|locale|screenSize"/> - <activity android:name=".backup.RestoreActivity" android:configChanges="orientation|locale|screenSize" /> - <activity android:name=".backup.RestoreChooserActivity" android:configChanges="orientation|locale|screenSize" /> - <activity android:name=".backup.BackupSettingsActivity" android:configChanges="orientation|locale|screenSize"/> - - <provider android:name=".data.db.EPGSearchSuggestionsProvider" - android:authorities="de.bjusystems.vdrmanager.data.db.EPGSearchSuggestionsProvider" /> - - </application> - + package="de.bjusystems.vdrmanager" + android:versionCode="600" + android:versionName="0.6.0" > + + <uses-permission android:name="android.permission.INTERNET" /> + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> + <uses-permission android:name="android.permission.BROADCAST_SMS" /> + + <uses-sdk + android:minSdkVersion="7" + android:targetSdkVersion="14" /> + + <application + android:name=".app.VdrManagerApp" + android:hardwareAccelerated="true" + android:icon="@drawable/app_logo" + android:label="@string/app_name" > + <activity + android:name=".gui.VdrManagerActivity" + android:clearTaskOnLaunch="true" + android:configChanges="locale" + android:label="@string/app_name" + android:theme="@style/Theme.Sherlock" > + <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|locale|screenSize" /> + <activity + android:name=".gui.EventEpgListActivity" + android:configChanges="orientation|locale|screenSize" > + <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|locale|screenSize" > + <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|locale|screenSize" /> + <activity + android:name=".gui.ChannelListActivity" + android:configChanges="orientation|locale|screenSize" > + <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|locale|screenSize" > + <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" + android:configChanges="orientation|locale|keyboardHidden|screenSize" + android:windowSoftInputMode="stateHidden" > + <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|locale|screenSize" > + <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|locale|screenSize" + android:launchMode="singleTask" > + <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" + android:configChanges="orientation|locale|screenSize" /> + <activity + android:name=".gui.VdrListActivity" + android:configChanges="orientation|locale|screenSize" /> + <activity + android:name=".gui.VdrPreferencesActivity" + android:configChanges="orientation|locale|screenSize" /> + <activity + android:name=".backup.BackupActivity" + android:configChanges="orientation|locale|screenSize" /> + <activity + android:name=".backup.RestoreActivity" + android:configChanges="orientation|locale|screenSize" /> + <activity + android:name=".backup.RestoreChooserActivity" + android:configChanges="orientation|locale|screenSize" /> + <activity + android:name=".backup.BackupSettingsActivity" + android:configChanges="orientation|locale|screenSize" /> + + <provider + android:name=".data.db.EPGSearchSuggestionsProvider" + android:authorities="de.bjusystems.vdrmanager.data.db.EPGSearchSuggestionsProvider" /> + + <activity + android:name=".ZonePicker" + android:configChanges="orientation|locale|screenSize" /> + </application> </manifest>
\ No newline at end of file |