diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-03-05 13:49:04 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-03-05 16:13:45 +0200 |
commit | c2756737e0dafe9c802346a2cf4d459bf59acd9d (patch) | |
tree | 64837ebbaac68579fd5815e9a9b6c3579d27259f /android | |
parent | 0b5558a68de6b9d887fd76a5ad8463116e7be4bd (diff) |
Require Android API level 15, which is from December 2011
Note that this doesn't really mean a lot for the NDK.
Change-Id: I4061cb856055ae126aadf56afc462182a875e65f
Diffstat (limited to 'android')
4 files changed, 6 insertions, 6 deletions
diff --git a/android/experimental/DocumentLoader/AndroidManifest.xml b/android/experimental/DocumentLoader/AndroidManifest.xml index 65f223b32dad..97815343fc79 100644 --- a/android/experimental/DocumentLoader/AndroidManifest.xml +++ b/android/experimental/DocumentLoader/AndroidManifest.xml @@ -4,8 +4,8 @@ android:installLocation="preferExternal" android:versionCode="1" android:versionName="1.0"> - <uses-sdk android:minSdkVersion="9" - android:targetSdkVersion="14"/> + <uses-sdk android:minSdkVersion="15" + android:targetSdkVersion="15"/> <application android:label="LO Experimental DocumentLoader" android:debuggable="true" android:largeHeap="true" diff --git a/android/experimental/DocumentLoader/project.properties b/android/experimental/DocumentLoader/project.properties index 06b2d880c3d4..772d3c57623c 100644 --- a/android/experimental/DocumentLoader/project.properties +++ b/android/experimental/DocumentLoader/project.properties @@ -8,7 +8,7 @@ # project structure. # Project target. -target=android-14 +target=android-15 # Use the Bootstrap class android.library.reference.1=../../Bootstrap diff --git a/android/experimental/desktop/AndroidManifest.xml b/android/experimental/desktop/AndroidManifest.xml index 9e3b4ac2b05f..d685e17fdb68 100644 --- a/android/experimental/desktop/AndroidManifest.xml +++ b/android/experimental/desktop/AndroidManifest.xml @@ -3,8 +3,8 @@ package="org.libreoffice.experimental.desktop" android:versionCode="1" android:versionName="1.0"> - <uses-sdk android:minSdkVersion="9" - android:targetSdkVersion="14"/> + <uses-sdk android:minSdkVersion="15" + android:targetSdkVersion="15"/> <application android:label="LibreOffice Desktop" android:debuggable="true" android:largeHeap="true" diff --git a/android/experimental/desktop/project.properties b/android/experimental/desktop/project.properties index cffbf1ffe426..56b38d24b766 100644 --- a/android/experimental/desktop/project.properties +++ b/android/experimental/desktop/project.properties @@ -8,6 +8,6 @@ # project structure. # Project target. -target=android-14 +target=android-15 android.library.reference.1=../../Bootstrap |