summaryrefslogtreecommitdiffstats
path: root/photoviewer
diff options
context:
space:
mode:
authorAdam Copp <adamcopp@google.com>2012-09-19 12:14:40 +0100
committerAdam Copp <adamcopp@google.com>2012-09-19 12:25:45 +0100
commitd0c577cfed4ce141ce26552c57b7b60a495a437d (patch)
treed6863e2dcd982f1b881e8a4bf658a90c0e1cecef /photoviewer
parent685658bb07dc786536e038060fdeec975aa62176 (diff)
downloadandroid_frameworks_ex-d0c577cfed4ce141ce26552c57b7b60a495a437d.tar.gz
android_frameworks_ex-d0c577cfed4ce141ce26552c57b7b60a495a437d.tar.bz2
android_frameworks_ex-d0c577cfed4ce141ce26552c57b7b60a495a437d.zip
Specify minimum SDK version of 11 in the manifest
The photoviewer project throws errors in eclipse because there's no minimum sdk version in the AndroidManifest. This CL specifies min SDK version of 11, which is sufficient for all of the calls we make in the app and stops eclipse from complaining Change-Id: Id5492651faa8fffc857d2660f7d4796428efb2d6
Diffstat (limited to 'photoviewer')
-rw-r--r--photoviewer/AndroidManifest.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/photoviewer/AndroidManifest.xml b/photoviewer/AndroidManifest.xml
index 485e044..e4e9101 100644
--- a/photoviewer/AndroidManifest.xml
+++ b/photoviewer/AndroidManifest.xml
@@ -18,4 +18,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.ex.photo"
android:versionCode="1">
+
+ <uses-sdk
+ android:minSdkVersion="11"/>
</manifest> \ No newline at end of file