n8ebel
06/21/2021, 3:44 PMshared/build/bin
i see that shared.framework
seems to contain all the classes/methods I would expect
But within shared/build/cocoapods
the shared.framework/headers
directory only contains placeholder.h
XCode seems to recognize the shared framework alright (no warnings on the import) but it fails to resolve any of the classes within the framework
Is there some task that needs running, or other automagical step, that I’m missing to link/package what’s in build/bin
to the cocoapod output?kpgalligan
06/21/2021, 3:45 PMpod install
?kpgalligan
06/21/2021, 3:46 PMkpgalligan
06/21/2021, 3:46 PMkpgalligan
06/21/2021, 3:47 PMn8ebel
06/21/2021, 3:47 PM:shared:syncFramework
but I don’t see that syncFramework task within the projectkpgalligan
06/21/2021, 3:48 PMn8ebel
06/21/2021, 3:48 PMkpgalligan
06/21/2021, 3:49 PMpod install
, open the workspace, then try to build. If it fails with something about not finding the shared module, run pod install
againn8ebel
06/21/2021, 3:49 PMkpgalligan
06/21/2021, 3:50 PMn8ebel
06/21/2021, 3:50 PMn8ebel
06/21/2021, 3:51 PMkpgalligan
06/21/2021, 3:52 PMn8ebel
06/21/2021, 4:01 PMn8ebel
06/21/2021, 4:01 PMkpgalligan
06/21/2021, 4:03 PMrusshwolf
06/22/2021, 2:34 PM:shared:syncFramework
task only gets added to the project during an Xcode project build (it triggers on one of the environment variables that gets set there) so you won't see it in the IDEA gradle tasks list.n8ebel
06/23/2021, 3:55 AM