From 25caa91f9c4bd5e4b8ca364f6c6a6ba6ed807a2c Mon Sep 17 00:00:00 2001 From: Richard Samuelsson Date: Sat, 27 Oct 2018 19:20:04 +0200 Subject: [PATCH 1/3] Add podspec --- RNVoipPushNotification.podspec | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 RNVoipPushNotification.podspec diff --git a/RNVoipPushNotification.podspec b/RNVoipPushNotification.podspec new file mode 100644 index 0000000..e69de29 From 2f60fcef0becb5a4d8e961ec4e46b415bc3998f8 Mon Sep 17 00:00:00 2001 From: Richard Samuelsson Date: Sat, 27 Oct 2018 19:26:50 +0200 Subject: [PATCH 2/3] Add podspec --- RNVoipPushNotification.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/RNVoipPushNotification.podspec b/RNVoipPushNotification.podspec index e69de29..ca7e840 100644 --- a/RNVoipPushNotification.podspec +++ b/RNVoipPushNotification.podspec @@ -0,0 +1,18 @@ + +require 'json' + +package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) + +Pod::Spec.new do |s| + s.name = "RNVoipPushNotification" + s.version = package['version'] + s.summary = package['description'] + s.homepage = package['homepage'] + s.license = package['license'] + s.author = package['author'] + s.source = { :git => package['repository']['url'], :tag => "v#{s.version}" } + s.requires_arc = true + s.platform = :ios, "8.0" + s.source_files = "ios/RNVoipPushNotification/*.{h,m}" + s.dependency 'React/Core' +end From 19dac98b9c6c4acf5f888f12263085a8c8359116 Mon Sep 17 00:00:00 2001 From: Richard Samuelsson Date: Sat, 27 Oct 2018 19:27:55 +0200 Subject: [PATCH 3/3] bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 62c50f2..82664c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-voip-push-notification", - "version": "1.1.2", + "version": "1.1.3", "description": "VoIP push notification on react-native", "main": "index.js", "scripts": {