Commit f8bcff8f authored by Alexander Smorkalov's avatar Alexander Smorkalov Committed by Andrey Kamaev

Device rotation support added;

Nexus 7 support added.
parent 09901fae
...@@ -3,14 +3,11 @@ ...@@ -3,14 +3,11 @@
android:versionCode="1" android:versionCode="1"
android:versionName="1.0" > android:versionName="1.0" >
<uses-permission android:name="android.permission.CAMERA"/> <uses-permission android:name="android.permission.CAMERA" required="false"/>
<uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera" required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" /> <uses-feature android:name="android.hardware.camera.autofocus" required="false"/>
<uses-sdk android:minSdkVersion="8"/>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="9" />
<application <application
android:icon="@drawable/ic_launcher" android:icon="@drawable/ic_launcher"
...@@ -18,7 +15,8 @@ ...@@ -18,7 +15,8 @@
android:theme="@style/AppTheme" > android:theme="@style/AppTheme" >
<activity <activity
android:name=".Puzzle15Activity" android:name=".Puzzle15Activity"
android:label="@string/title_activity_puzzle15" > android:label="@string/title_activity_puzzle15"
android:configChanges = "keyboardHidden|orientation" >
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment