forked from Cordobo/cordova-plugin-ios-camera-permissions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
19 lines (19 loc) · 983 Bytes
/
plugin.xml
File metadata and controls
19 lines (19 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version='1.0' encoding='UTF-8'?>
<plugin id="cordova-plugin-ios-camera-permissions" version="1.0.2" xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>iOS Permissions</name>
<author>Andreas Jacob (http://cordobo.com/)</author>
<description>Cordova / PhoneGap Plugin Permission Settings for NSCameraUsageDescription in iOS 10 by adding a declaration to the Info.plist file</description>
<keywords>cordova, ios, app, security, permissions, nscamerausagedescription</keywords>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<platform name="ios">
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<string>This app need to use camera</string>
</config-file>
<config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>This app need to access to photo library</string>
</config-file>
</platform>
</plugin>