react-native-contacts 8.0.0 → 8.0.1

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/.tool-versions CHANGED
@@ -1 +1 @@
1
- nodejs 19.2.0
1
+ nodejs lts
@@ -11,7 +11,7 @@
11
11
  #else
12
12
 
13
13
  #import <React/RCTBridgeModule.h>
14
- @interface RCTContacts : NSObject <RCTBridgeModule>
14
+ @interface RCTContacts : NSObject <RCTBridgeModule, CNContactViewControllerDelegate>
15
15
 
16
16
  #endif
17
17
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/rt2zz/react-native-contacts.git"
6
6
  },
7
- "version": "8.0.0",
7
+ "version": "8.0.1",
8
8
  "description": "React Native Contacts (android & ios)",
9
9
  "nativePackage": true,
10
10
  "keywords": [
@@ -17,6 +17,7 @@ Pod::Spec.new do |s|
17
17
  s.platform = :ios, "12.0"
18
18
  s.source = { :git => "https://github.com/rt2zz/react-native-contacts.git", :tag => "v#{s.version}" }
19
19
  s.source_files = "ios/**/*.{h,m,mm,swift}"
20
+ s.frameworks = 'Contacts', 'ContactsUI', 'Photos'
20
21
 
21
22
  s.dependency 'React-Core'
22
23