This repository has been archived by the owner on Apr 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathXamarinFormsContacts.nuspec
84 lines (62 loc) · 3.77 KB
/
XamarinFormsContacts.nuspec
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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<!-- The identifier that must be unique within the hosting gallery -->
<id>Xamarin.Forms.Contacts</id>
<!-- The package version number that is used when resolving dependencies -->
<version>1.0.6</version>
<!-- Authors contain text that appears directly on the gallery -->
<authors>Enis Necipoğlu,sadgit ,Sumeyya Arar</authors>
<!-- Owners are typically nuget.org identities that allow gallery
users to easily find other packages by the same owners. -->
<owners>Enis Necipoğlu</owners>
<!-- License and project URLs provide links for the gallery -->
<licenseUrl>https://github.com/enisn/Xamarin.Forms.Contacts</licenseUrl>
<projectUrl>https://github.com/enisn/Xamarin.Forms.Contacts</projectUrl>
<!-- The icon is used in Visual Studio's package manager UI -->
<iconUrl>http://enisnecipoglu.com/Plugins/Contacts.png</iconUrl>
<!-- If true, this value prompts the user to accept the license when
installing the package. -->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!-- Any details about this particular release -->
<releaseNotes>Return types cahanged to IEnumerable and added Func to filter contacts. Performance optimized</releaseNotes>
<summary>
Read contacts from iOS and Android Devices
</summary>
<!-- The description can be used in package manager UI. Note that the
nuget.org gallery uses information you add in the portal. -->
<description>
Easily read contacts from iOS and Android.
Sample:
var contacts = await Plugin.ContactService.CrossContactService.Current.GetContactListAsync();
DON'T FORGET PERMISSIONS:
ON ANDROID:
READ_CONTACTS
ON IOS:
into Info.plist
<key>NSContactsUsageDescription</key>
<string>We need contact permission to do ...</string>
</description>
<!-- Copyright information -->
<copyright>OpenSource on Git | Copyright ©2018 Enis Necipoglu</copyright>
<!-- Tags appear in the gallery and can be used for tag searches -->
<tags>Contact,Xamarin,Xamarin Forms,Read Contact, NSContact,Contact List</tags>
<!-- Dependencies are automatically installed when the package is installed -->
<dependencies>
</dependencies>
</metadata>
<!-- A readme.txt to display when the package is installed -->
<files>
<!-- Cross-platform reference assemblies -->
<file src="Plugin\ContactService\bin\Release\netstandard2.0\Plugin.ContactService.dll" target="lib\netstandard2.0\Plugin.ContactService.dll" />
<file src="Plugin\ContactService\bin\Release\netstandard2.0\Plugin.ContactService.xml" target="lib\netstandard2.0\Plugin.ContactService.xml" />
<file src="Plugin\ContactService\bin\Release\netstandard1.0\Plugin.ContactService.dll" target="lib\netstandard1.0\Plugin.ContactService.dll" />
<file src="Plugin\ContactService\bin\Release\netstandard1.0\Plugin.ContactService.xml" target="lib\netstandard1.0\Plugin.ContactService.xml" />
<!-- iOS reference assemblies -->
<file src="Plugin\ContactService\bin\Release\xamarin.ios10\Plugin.ContactService.dll" target="lib\Xamarin.iOS10\Plugin.ContactService.dll" />
<file src="Plugin\ContactService\bin\Release\xamarin.ios10\Plugin.ContactService.xml" target="lib\Xamarin.iOS10\Plugin.ContactService.xml" />
<!-- Android reference assemblies -->
<file src="Plugin\ContactService\bin\Release\monoandroid80\Plugin.ContactService.dll" target="lib\MonoAndroid10\Plugin.ContactService.dll" />
<file src="Plugin\ContactService\bin\Release\monoandroid80\Plugin.ContactService.xml" target="lib\MonoAndroid10\Plugin.ContactService.xml" />
</files>
</package>