We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 105e9b9 commit a163624Copy full SHA for a163624
RNCallKit.podspec
@@ -0,0 +1,18 @@
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 = "RNCallKit"
7
+ s.version = "1.1.3"
8
+ s.summary = package['description']
9
+ s.homepage = "https://github.com/ianlin/react-native-callkit"
10
+ s.license = "ISC"
11
+ s.author = "ianlin"
12
+ s.source = { :git => package['repository']['url'], :tag => "v#{s.version}" }
13
+ s.requires_arc = true
14
+ s.platform = :ios, "8.0"
15
+ s.source_files = "ios/RNCallKit/*.{h,m}"
16
+ s.dependency 'React/Core'
17
+end
18
0 commit comments