diff -Ndaur GameBoid.pristine/GameBoid/AndroidManifest.xml GameBoid.new/GameBoid/AndroidManifest.xml --- GameBoid.pristine/GameBoid/AndroidManifest.xml 2012-06-28 20:43:21.335625972 +1100 +++ GameBoid.new/GameBoid/AndroidManifest.xml 2012-06-28 20:45:01.188411369 +1100 @@ -3,10 +3,11 @@ android:versionCode="6" android:versionName="1.3.2"> - <uses-sdk android:minSdkVersion="1" /> + <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="10"/> <application android:label="@string/app_label" - android:icon="@drawable/app_icon"> + android:icon="@drawable/app_icon" android:hardwareAccelerated="true" + android:theme="@style/MyTheme"> <activity android:name="GameBoid"> <intent-filter> diff -Ndaur GameBoid.pristine/GameBoid/res/values/themes.xml GameBoid.new/GameBoid/res/values/themes.xml --- GameBoid.pristine/GameBoid/res/values/themes.xml 1970-01-01 10:00:00.000000000 +1000 +++ GameBoid.new/GameBoid/res/values/themes.xml 2012-06-28 20:45:44.964837813 +1100 @@ -0,0 +1,5 @@ +<resources> + <style name="MyTheme" parent="@android:style/Theme"> + <!-- Any customizations for your app running on pre-3.0 devices here --> + </style> +</resources> diff -Ndaur GameBoid.pristine/GameBoid/res/values-v11/themes.xml GameBoid.new/GameBoid/res/values-v11/themes.xml --- GameBoid.pristine/GameBoid/res/values-v11/themes.xml 1970-01-01 10:00:00.000000000 +1000 +++ GameBoid.new/GameBoid/res/values-v11/themes.xml 2012-06-28 20:46:26.801274905 +1100 @@ -0,0 +1,5 @@ +<resources> + <style name="MyTheme" parent="@android:style/Theme.Holo"> + <!-- Any customizations for your app running on devices with Theme.Holo here --> + </style> +</resources> diff -Ndaur GameBoid.pristine/GameBoid/res/values-v14/themes.xml GameBoid.new/GameBoid/res/values-v14/themes.xml --- GameBoid.pristine/GameBoid/res/values-v14/themes.xml 1970-01-01 10:00:00.000000000 +1000 +++ GameBoid.new/GameBoid/res/values-v14/themes.xml 2012-06-28 20:46:54.401123450 +1100 @@ -0,0 +1,5 @@ +<resources> + <style name="MyTheme" parent="@android:style/Theme.DeviceDefault"> + <!-- Any customizations for your app running on devices with Theme.Holo here --> + </style> +</resources>