Skip to content

Commit a163624

Browse files
committed
Add podspec
1 parent 105e9b9 commit a163624

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

RNCallKit.podspec

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)