From 43aa4f955917680ba11f1b0262f6ed2d7f52c3df Mon Sep 17 00:00:00 2001 From: AlexVincent525 Date: Wed, 19 Feb 2020 11:40:56 +0800 Subject: [PATCH] :zap: Update podfile for better index speed in Jetbrains AppCode. --- ios/Podfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ios/Podfile b/ios/Podfile index 98534bb7..89fb0f92 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -72,9 +72,8 @@ target 'Runner' do system('mkdir -p .symlinks/plugins') plugin_pods = parse_KV_file('../.flutter-plugins') plugin_pods.each do |name, path| - symlink = File.join('.symlinks', 'plugins', name) - File.symlink(path, symlink) - pod name, :path => File.join(symlink, 'ios') + specPath = "#{path}/ios/#{name}.podspec" + pod name,:path=>specPath end end