react-native-contacts 8.0.2 → 8.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/android/src/main/java/com/rt2zz/reactnativecontacts/impl/ContactsManagerImpl.java +1336 -0
- package/android/src/newarch/com/rt2zz/reactnativecontacts/ContactsManager.java +25 -1139
- package/android/src/oldarch/com/rt2zz/reactnativecontacts/ContactsManager.java +24 -1135
- package/ios/RCTContacts/RCTContacts.mm +42 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -353,7 +353,7 @@ The thumbnailPath is the direct URI for the temp location of the contact's cropp
|
|
|
353
353
|
Usage as follows:
|
|
354
354
|
```js
|
|
355
355
|
Contacts.checkPermission().then(permission => {
|
|
356
|
-
// Contacts.PERMISSION_AUTHORIZED || Contacts.PERMISSION_UNDEFINED || Contacts.PERMISSION_DENIED
|
|
356
|
+
// Contacts.PERMISSION_AUTHORIZED || Contacts.PERMISSION_UNDEFINED || Contacts.PERMISSION_LIMITED || Contacts.PERMISSION_DENIED
|
|
357
357
|
if (permission === 'undefined') {
|
|
358
358
|
Contacts.requestPermission().then(permission => {
|
|
359
359
|
// ...
|