diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index a48b0ef0d0d36d789285d5f14406b175e693eb67..f58b344443d5309ba57c7ca4d620b326e7fc3682 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -13,7 +13,7 @@
 	<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
 
 	<application
-		android:theme="@android:style/Theme.Light"
+		android:theme="@style/LightTheme"
 		android:icon="@drawable/ic_launcher"
 		android:label="@string/app_name" >
 		<service
diff --git a/res/values-v11/styles.xml b/res/values-v11/styles.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f5476f167a1086f597cbf7495a8624d65fac2cc1
--- /dev/null
+++ b/res/values-v11/styles.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+	<style name="LightTheme" parent="android:Theme.Holo.Light" />
+</resources>
\ No newline at end of file
diff --git a/res/values/styles.xml b/res/values/styles.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7974ea7455171c48a1223c3dde5625189631448a
--- /dev/null
+++ b/res/values/styles.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+	<style name="LightTheme" parent="android:Theme.Light" />
+</resources>
\ No newline at end of file