summaryrefslogtreecommitdiff
path: root/vdrmanager/AndroidManifest.xml
diff options
context:
space:
mode:
authorlado <herrlado@gmail.com>2011-10-30 23:15:29 +0100
committerlado <herrlado@gmail.com>2011-10-30 23:15:29 +0100
commitfd40a069c5faec0b68a798bc121e32fa65361e64 (patch)
tree4c370c7d68fe58ffe825a76d71177bd207f7214d /vdrmanager/AndroidManifest.xml
parentc1f09d42c1cdc8f917984da6fad863d7379e4b6e (diff)
downloadvdr-manager-fd40a069c5faec0b68a798bc121e32fa65361e64.tar.gz
vdr-manager-fd40a069c5faec0b68a798bc121e32fa65361e64.tar.bz2
Some fixes regarding tu cusomt locale
Diffstat (limited to 'vdrmanager/AndroidManifest.xml')
-rw-r--r--vdrmanager/AndroidManifest.xml24
1 files changed, 13 insertions, 11 deletions
diff --git a/vdrmanager/AndroidManifest.xml b/vdrmanager/AndroidManifest.xml
index 35fb221..fa6ec31 100644
--- a/vdrmanager/AndroidManifest.xml
+++ b/vdrmanager/AndroidManifest.xml
@@ -20,9 +20,9 @@
</activity>
<activity android:name=".gui.TimeEpgListActivity"
- android:configChanges="orientation" />
+ android:configChanges="orientation|locale" />
<activity android:name=".gui.EventEpgListActivity"
- android:configChanges="orientation">
+ android:configChanges="orientation|locale">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
@@ -30,7 +30,7 @@
android:value=".gui.EpgSearchListActivity" />
</activity>
<activity android:name=".gui.TimerListActivity"
- android:configChanges="orientation">
+ android:configChanges="orientation|locale">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
@@ -38,9 +38,9 @@
android:value=".gui.EpgSearchListActivity" />
</activity>
<activity android:name=".gui.PreferencesActivity"
- android:configChanges="orientation"></activity>
+ android:configChanges="orientation|locale"/>
<activity android:name=".gui.ChannelListActivity"
- android:configChanges="orientation">
+ android:configChanges="orientation|locale">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
@@ -48,7 +48,7 @@
android:value=".gui.EpgSearchListActivity" />
</activity>
<activity android:name=".gui.EpgDetailsActivity"
- android:configChanges="orientation">
+ android:configChanges="orientation|locale">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
@@ -63,19 +63,19 @@
android:value=".gui.EpgSearchListActivity" />
</activity>
<activity android:name=".gui.RecordingListActivity"
- android:configChanges="orientation">
+ android:configChanges="orientation|locale">
<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">
+ <activity android:name=".gui.EpgSearchListActivity" android:launchMode="singleTask"
+ android:configChanges="orientation|locale">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
- <meta-data android:name="android.app.searchable"
+ <meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
@@ -88,7 +88,9 @@
</application>
- <uses-permission android:name="android.permission.INTERNET"></uses-permission>
+ <uses-permission android:name="android.permission.INTERNET"/>
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" />