Closed
Description
First of all, this is awesome! Thanks for this plugin!
In the project I'm testing this plugin I've got some Local Pods that, for some reason don't get prebuilt.
What I'm seeing is that Pods like "Alamofire" get built and are in the "_Prebuild" folder but the others are not.
platform :ios, '11.0'
source 'https://github.com/CocoaPods/Specs'
target 'TestProject' do
use_frameworks!
all_binary!
pod 'LocalPod', path: './LocalPod'
pod 'Alamofire'
end
Am I doing something wrong or local pods are handled differently?