From cca2afa90dec8d9f6756fdbf2d3e86ffa37bb595 Mon Sep 17 00:00:00 2001 From: zhongwuzw Date: Wed, 6 Dec 2017 00:10:09 +0800 Subject: [PATCH] update Example podfile :path value --- Example/Podfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Example/Podfile b/Example/Podfile index 396431af..b77306c9 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -2,14 +2,14 @@ platform :ios, '9.0' target 'ChatExample' do use_frameworks! - pod 'MessageKit', :path => '../MessageKit.podspec' + pod 'MessageKit', :path => '../' - target 'ChatExampleTests' do - inherit! :search_paths - end +target 'ChatExampleTests' do + inherit! :search_paths +end - target 'ChatExampleUITests' do - inherit! :search_paths - end +target 'ChatExampleUITests' do + inherit! :search_paths +end end