mirror of
https://github.com/apache/cordova-plugin-camera.git
synced 2025-01-19 03:35:10 +08:00
Added NSPhotoLibraryUsageDescription parameter to example install command
Fixing some usages of NSPhotoLibraryUsageDescriptionentry This closes #240
This commit is contained in:
parent
8b3410bcc6
commit
cc48945f37
@ -18,21 +18,21 @@ the system's image library.
|
|||||||
|
|
||||||
### iOS Quirks
|
### iOS Quirks
|
||||||
|
|
||||||
Since iOS 10 it's mandatory to add a `NSCameraUsageDescription` and `NSPhotoLibraryUsageDescriptionentry` in the info.plist.
|
Since iOS 10 it's mandatory to add a `NSCameraUsageDescription` and `NSPhotoLibraryUsageDescription` in the info.plist.
|
||||||
|
|
||||||
- `NSCameraUsageDescription` describes the reason that the app accesses the user’s camera.
|
- `NSCameraUsageDescription` describes the reason that the app accesses the user’s camera.
|
||||||
- `NSPhotoLibraryUsageDescriptionentry` describes the reason the app accesses the user's photo library.
|
- `NSPhotoLibraryUsageDescription` describes the reason the app accesses the user's photo library.
|
||||||
|
|
||||||
When the system prompts the user to allow access, this string is displayed as part of the dialog box.
|
When the system prompts the user to allow access, this string is displayed as part of the dialog box.
|
||||||
|
|
||||||
To add this entry you can pass the following variables on plugin install.
|
To add this entry you can pass the following variables on plugin install.
|
||||||
|
|
||||||
- `CAMERA_USAGE_DESCRIPTION` for `NSCameraUsageDescription`
|
- `CAMERA_USAGE_DESCRIPTION` for `NSCameraUsageDescription`
|
||||||
- `PHOTOLIBRARY_USAGE_DESCRIPTION` for `NSPhotoLibraryUsageDescriptionentry`
|
- `PHOTOLIBRARY_USAGE_DESCRIPTION` for `NSPhotoLibraryUsageDescription`
|
||||||
-
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
cordova plugin add cordova-plugin-camera --variable CAMERA_USAGE_DESCRIPTION="your usage message"
|
cordova plugin add cordova-plugin-camera --variable CAMERA_USAGE_DESCRIPTION="your usage message" --variable PHOTOLIBRARY_USAGE_DESCRIPTION="your usage message"
|
||||||
|
|
||||||
If you don't pass the variable, the plugin will add an empty string as value.
|
If you don't pass the variable, the plugin will add an empty string as value.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user