From 2c7bd571329d5c3d43fae996b01fe52582a7ee40 Mon Sep 17 00:00:00 2001 From: Pranav Chauhan Date: Sun, 31 Mar 2019 18:21:59 +0530 Subject: [PATCH] - fixing pod installation issue --- ios/Podfile | 2 +- ios/RNAppTour.m | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ios/Podfile b/ios/Podfile index c74f656..42c7f1d 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -7,7 +7,7 @@ target 'RNAppTour' do # Pods for RNAppTour use_frameworks! - pod 'MaterialShowcase', '~> 0.6.4' + pod 'MaterialShowcase', :git => 'https://github.com/prscX/material-showcase-ios', :branch => 'swift-version-fix' post_install do |installer| installer.pods_project.targets.each do |target| diff --git a/ios/RNAppTour.m b/ios/RNAppTour.m index fa50f88..d178175 100644 --- a/ios/RNAppTour.m +++ b/ios/RNAppTour.m @@ -166,7 +166,7 @@ - (MaterialShowcase *)generateMaterialShowcase:(NSNumber *)view props:(NSDiction if ([props objectForKey:@"cancelable"] != nil) { BOOL *cancelable = [[props objectForKey:@"cancelable"] boolValue]; - [materialShowcase setIsTapRecognizerForTagretView: !cancelable]; + [materialShowcase setIsTapRecognizerForTargetView: !cancelable]; } // Text diff --git a/package.json b/package.json index 1208f91..e2b660b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-app-tour", - "version": "0.0.18", + "version": "0.0.19", "description": "React Native: Native App Tour Library", "repository": { "type": "git",