Kaydet (Commit) 29719a36 authored tarafından Miklos Vajna's avatar Miklos Vajna

sync android manifest with project properties: sdk version

Note that with having a targetSdk >= 11 and minSdk <= 10, we can enable
hw acceleration without loosing compatibility with 2.x devices.

Also, remove android:configChanges="orientation", as it seems to improve
rotation experience a bit.

Change-Id: Ia3be9bb3b998d604a032eb5c60f9bb0ec71dfc68
üst b4d1aaa0
......@@ -3,14 +3,15 @@
package="org.libreoffice.android.examples"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="9" />
<uses-sdk android:minSdkVersion="9"
android:targetSdkVersion="14"/>
<application android:label="LO Experimental DocumentLoader"
android:debuggable="true"
android:largeHeap="true"
android:hardwareAccelerated="true">
<activity android:name=".DocumentLoader"
android:label="LO DocumentLoader"
android:configChanges="orientation|keyboardHidden">
android:configChanges="keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
......
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