-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prebuilt framework not generated for local Pods. #33
Comments
Yes, they are handled differently. Local pods will not be prebuilt by design. Local pods are changed frequently and it's not proper to build the whole framework when very one line code changed. It's also hard to check the whether the local pods are changed in the view of cocoapods (for normal pod, checking the podlock file is enough) . If you want to prebuilt your own libs, moving local pods to separated repos may be a good choices. |
It totally makes sense! I'm my case I guess it's a misuse of the concept of a Local Pod as the pod will rarely change ( can't use a private pod repo because of the enforced use of SVN as the only allowed VCS ) Thanks for the answer! |
@mdelmaestro |
I'm interested in using The way React Native works is by generating an iOS project with a Example:
Building a React Native project takes between 8-16 minutes from scratch just to build the Pods. This obviously is pretty bad on CI, and I was trying to see if there's a way to improve this using Since these local pods are not meant to be hand modified by user, it should be possible to prebuild them. Please consider changing this behavior or at least adding some sort of flag to allow prebuilding local pods for this use case. |
@leavez Is there any possibility that we have support this use case with React Native? |
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.
Am I doing something wrong or local pods are handled differently?
The text was updated successfully, but these errors were encountered: