diff options
| author | Adam Copp <adamcopp@google.com> | 2012-09-19 12:14:40 +0100 |
|---|---|---|
| committer | Adam Copp <adamcopp@google.com> | 2012-09-19 12:25:45 +0100 |
| commit | d0c577cfed4ce141ce26552c57b7b60a495a437d (patch) | |
| tree | d6863e2dcd982f1b881e8a4bf658a90c0e1cecef /photoviewer | |
| parent | 685658bb07dc786536e038060fdeec975aa62176 (diff) | |
| download | android_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.xml | 3 |
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 |
