File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1+
2+ require 'json'
3+
4+ package = JSON . parse ( File . read ( File . join ( __dir__ , 'package.json' ) ) )
5+
6+ Pod ::Spec . new do |s |
7+ s . name = "RNVoipPushNotification"
8+ s . version = package [ 'version' ]
9+ s . summary = package [ 'description' ]
10+ s . homepage = package [ 'homepage' ]
11+ s . license = package [ 'license' ]
12+ s . author = package [ 'author' ]
13+ s . source = { :git => package [ 'repository' ] [ 'url' ] , :tag => "v#{ s . version } " }
14+ s . requires_arc = true
15+ s . platform = :ios , "8.0"
16+ s . source_files = "ios/RNVoipPushNotification/*.{h,m}"
17+ s . dependency 'React/Core'
18+ end
Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-voip-push-notification" ,
3- "version" : " 1.1.2 " ,
3+ "version" : " 1.1.3 " ,
44 "description" : " VoIP push notification on react-native" ,
55 "main" : " index.js" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments