plugin.xml 9.97 KB
Newer Older
李晓兵's avatar
李晓兵 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
-->

<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
    xmlns:rim="http://www.blackberry.com/ns/widgets"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest"
    xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
    id="cordova-plugin-contacts"
    version="2.3.1">

    <name>Contacts</name>
    <description>Cordova Contacts Plugin</description>
    <license>Apache 2.0</license>
    <keywords>cordova,contacts</keywords>
    <repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-contacts.git</repo>
    <issue>https://issues.apache.org/jira/browse/CB/component/12320652</issue>

    <dependency id="cordova-plugin-compat" version="^1.0.0" />

    <js-module src="www/contacts.js" name="contacts">
        <clobbers target="navigator.contacts" />
    </js-module>

    <js-module src="www/Contact.js" name="Contact">
        <clobbers target="Contact" />
    </js-module>

    <js-module src="www/convertUtils.js" name="convertUtils">
    </js-module>

    <js-module src="www/ContactAddress.js" name="ContactAddress">
        <clobbers target="ContactAddress" />
    </js-module>

    <js-module src="www/ContactError.js" name="ContactError">
        <clobbers target="ContactError" />
    </js-module>

    <js-module src="www/ContactField.js" name="ContactField">
        <clobbers target="ContactField" />
    </js-module>

    <js-module src="www/ContactFindOptions.js" name="ContactFindOptions">
        <clobbers target="ContactFindOptions" />
    </js-module>

    <js-module src="www/ContactName.js" name="ContactName">
        <clobbers target="ContactName" />
    </js-module>

    <js-module src="www/ContactOrganization.js" name="ContactOrganization">
        <clobbers target="ContactOrganization" />
    </js-module>

    <js-module src="www/ContactFieldType.js" name="ContactFieldType">
        <merges target="" />
    </js-module>

    <!-- android -->
    <platform name="android">
        <config-file target="res/xml/config.xml" parent="/*">
            <feature name="Contacts">
                <param name="android-package" value="org.apache.cordova.contacts.ContactManager"/>
            </feature>
        </config-file>

        <config-file target="AndroidManifest.xml" parent="/*">
            <uses-permission android:name="android.permission.READ_CONTACTS" />
            <uses-permission android:name="android.permission.WRITE_CONTACTS" />
            <uses-permission android:name="android.permission.GET_ACCOUNTS" />
        </config-file>

        <source-file src="src/android/ContactAccessor.java" target-dir="src/org/apache/cordova/contacts" />
        <source-file src="src/android/ContactAccessorSdk5.java" target-dir="src/org/apache/cordova/contacts" />
        <source-file src="src/android/ContactManager.java" target-dir="src/org/apache/cordova/contacts" />
        <source-file src="src/android/ContactInfoDTO.java" target-dir="src/org/apache/cordova/contacts" />
    </platform>

    <!-- amazon-fireos -->
    <platform name="amazon-fireos">
        <config-file target="res/xml/config.xml" parent="/*">
            <feature name="Contacts">
                <param name="android-package" value="org.apache.cordova.contacts.ContactManager"/>
            </feature>
        </config-file>

        <config-file target="AndroidManifest.xml" parent="/*">
            <uses-permission android:name="android.permission.READ_CONTACTS" />
            <uses-permission android:name="android.permission.WRITE_CONTACTS" />
            <uses-permission android:name="android.permission.GET_ACCOUNTS" />
        </config-file>

        <source-file src="src/android/ContactAccessor.java" target-dir="src/org/apache/cordova/contacts" />
        <source-file src="src/android/ContactAccessorSdk5.java" target-dir="src/org/apache/cordova/contacts" />
        <source-file src="src/android/ContactManager.java" target-dir="src/org/apache/cordova/contacts" />
    </platform>

    <!-- ubuntu -->
    <platform name="ubuntu">
        <config-file target="config.xml" parent="/*">
            <feature name="Contacts">
                <param policy_group="contacts" policy_version="1" />
            </feature>
        </config-file>
        <header-file src="src/ubuntu/contacts.h" />
        <source-file src="src/ubuntu/contacts.cpp" />
    </platform>

    <!-- ios -->
    <platform name="ios">
        <config-file target="config.xml" parent="/*">
            <feature name="Contacts">
                <param name="ios-package" value="CDVContacts"/>
            </feature>
        </config-file>

JingChao's avatar
JingChao committed
135
        <preference name="CONTACTS_USAGE_DESCRIPTION" default="我们将在通讯功能读取您的联系人,为你提供便捷服务" />
李晓兵's avatar
李晓兵 committed
136
        <config-file target="*-Info.plist" parent="NSContactsUsageDescription">
JingChao's avatar
JingChao committed
137
            <string>我们将在通讯功能读取您的联系人,为你提供便捷服务</string>
李晓兵's avatar
李晓兵 committed
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
        </config-file>

        <js-module src="www/ios/contacts.js" name="contacts-ios">
            <merges target="navigator.contacts" />
        </js-module>

        <js-module src="www/ios/Contact.js" name="Contact-iOS">
            <merges target="Contact" />
        </js-module>

        <header-file src="src/ios/CDVContacts.h" />
        <source-file src="src/ios/CDVContacts.m" />
        <header-file src="src/ios/CDVContact.h" />
        <source-file src="src/ios/CDVContact.m" />

        <framework src="AddressBook.framework" weak="true" />
        <framework src="AddressBookUI.framework" weak="true" />
        <framework src="CoreGraphics.framework" />
    </platform>

    <!-- Browser -->
    <platform name="browser">
        <js-module src="src/browser/ContactsProxy.js" name="ContactsProxy">
            <merges target="navigator.contacts" />
        </js-module>
    </platform>

    <!-- blackberry10 -->
    <platform name="blackberry10">
        <config-file target="www/config.xml" parent="/widget">
            <feature name="Contacts" value="Contacts"/>
        </config-file>
        <config-file target="www/config.xml" parent="/widget/rim:permissions">
            <rim:permit>access_pimdomain_contacts</rim:permit>
        </config-file>
        <source-file src="src/blackberry10/index.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactActivity.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactAddress.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/contactConsts.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactError.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactField.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactFindOptions.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactName.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactNews.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactOrganization.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/ContactPhoto.js" target-dir="Contacts"></source-file>
        <source-file src="src/blackberry10/contactUtils.js" target-dir="Contacts"></source-file>
        <dependency id="cordova-plugin-bb-contacts" />
        <dependency id="cordova-plugin-bb-pimlib" />
    </platform>


    <!-- wp8 -->
    <platform name="wp8">
        <config-file target="config.xml" parent="/*">
            <feature name="Contacts">
                <param name="wp-package" value="Contacts"/>
            </feature>
        </config-file>

        <config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
            <Capability Name="ID_CAP_CONTACTS" />
        </config-file>

        <source-file src="src/wp/Contacts.cs" />
        <source-file src="src/wp/ContactsHelper.cs" />
        <source-file src="src/wp/ContactPicker.xaml" />
        <source-file src="src/wp/ContactPicker.xaml.cs" />
        <source-file src="src/wp/ContactPickerTask.cs" />
    </platform>

    <!-- firefoxos -->
    <platform name="firefoxos">
        <config-file target="config.xml" parent="/*">
            <permission name="contacts" access="readwrite" description="Required for accessing address book."
                        privileged="true"/>
        </config-file>
        <js-module src="src/firefoxos/ContactsProxy.js" name="ContactsProxy">
            <runs />
        </js-module>
    </platform>

    <!-- Windows 8 -->
    <platform name="windows8">
        <js-module src="src/windows8/ContactProxy.js" name="ContactProxy">
            <runs />
        </js-module>
    </platform>

    <!-- Windows -->
    <platform name="windows">
        <js-module src="src/windows/ContactProxy.js" name="ContactProxy">
            <runs />
        </js-module>
        <config-file target="package.phone.appxmanifest" parent="/Package/Capabilities">
            <m3:Capability Name="contacts" />
        </config-file>
        <config-file target="package.appxmanifest" parent="/Package/Capabilities" versions=">=10.0.0">
            <uap:Capability Name="contacts" />
        </config-file>
    </platform>

</plugin>