We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf53270 commit aafd37aCopy full SHA for aafd37a
1 file changed
RNAzureNotificationHub.podspec
@@ -0,0 +1,20 @@
1
+require 'json'
2
+
3
+package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
5
+Pod::Spec.new do |s|
6
+ s.name = "RNAzureNotificationHub"
7
+ s.version = package['version']
8
+ s.summary = package['description']
9
+ s.license = package['license']
10
11
+ s.authors = package['author']
12
+ s.homepage = package['homepage']
13
14
+ s.platform = :ios, "7.0"
15
+ s.source = { :git => "https://github.com/jonathanort/react-native-azurenotificationhub.git", :tag => "master" }
16
+ s.source_files = "ios/**/*.{h,m}"
17
+ s.requires_arc = true
18
+ s.ios.dependency 'WindowsAzureMessaging'
19
+ s.dependency "React"
20
+end
0 commit comments