forked from wix/react-native-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native-notifications.podspec
More file actions
24 lines (19 loc) · 908 Bytes
/
react-native-notifications.podspec
File metadata and controls
24 lines (19 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'react-native-notifications'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.license = package['license']
s.author = package['author']
s.homepage = package['homepage']
s.source = { :git => 'https://github.com/wix/react-native-notifications', :tag => s.version }
s.module_name = 'RNNotifications'
s.requires_arc = true
s.platform = :ios, '8.0'
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'notification.ios.js', 'notification.android.js', 'index.android.js', 'index.ios.js'
s.source_files = 'lib/ios/*.{h,m}'
s.exclude_files = "lib/ios/RNNotificationsTests/**/*.*", "lib/ios/OCMock/**/*.*"
s.dependency 'React-Core'
end