diff options
author | Dirk Dougherty <ddougherty@google.com> | 2012-03-05 22:55:49 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-03-05 22:55:49 -0800 |
commit | 56bab8bd83c4f54f876fdd76fc241197920129db (patch) | |
tree | a8ba602924d8f36f9654b0219f366562435836d0 /docs/html/training/camera/photobasics.jd | |
parent | 5ab7b3d111feb28def87b3ed40b3e877c5f977e2 (diff) | |
parent | 4d7bc65538c7cd9fbb1fbbcf22d1da47fcee1219 (diff) | |
download | frameworks_base-56bab8bd83c4f54f876fdd76fc241197920129db.zip frameworks_base-56bab8bd83c4f54f876fdd76fc241197920129db.tar.gz frameworks_base-56bab8bd83c4f54f876fdd76fc241197920129db.tar.bz2 |
am 4d7bc655: Doc change: String changes for Android Market
* commit '4d7bc65538c7cd9fbb1fbbcf22d1da47fcee1219':
Doc change: String changes for Android Market
Diffstat (limited to 'docs/html/training/camera/photobasics.jd')
-rw-r--r-- | docs/html/training/camera/photobasics.jd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/training/camera/photobasics.jd b/docs/html/training/camera/photobasics.jd index e6ab43e..3420918 100644 --- a/docs/html/training/camera/photobasics.jd +++ b/docs/html/training/camera/photobasics.jd @@ -55,7 +55,7 @@ for you.</p> <h2 id="TaskManifest">Request Camera Permission</h2> <p>If an essential function of your application is taking pictures, then restrict -its visibility in Android Market to devices that have a camera. To advertise +its visibility on Google Play to devices that have a camera. To advertise that your application depends on having a camera, put a <a href="{@docRoot}guide/topics/manifest/uses-feature-element.html"> {@code <uses-feature>}</a> tag in your manifest file:</p> @@ -68,7 +68,7 @@ href="{@docRoot}guide/topics/manifest/uses-feature-element.html"> {@code </pre> <p>If your application uses, but does not require a camera in order to function, add {@code -android:required="false"} to the tag. In doing so, Android Market will allow devices without a +android:required="false"} to the tag. In doing so, Google Play will allow devices without a camera to download your application. It's then your responsibility to check for the availability of the camera at runtime by calling {@link android.content.pm.PackageManager#hasSystemFeature hasSystemFeature(PackageManager.FEATURE_CAMERA)}. |