aw
11/23/2020, 7:09 PMshared.framework
(which is exported from :*packForXcode*) via a cococapods
into an existing App, without linking the App-project with the MPP-project (like in the Android Studio example)? We need to have the MPP-project separate from the iOS App and only use cocoapods
to link the (prebuild) dependency. Every example I find either directly invokes :packForXcode from Xcode build-phases or uses cocoapods
just to reference to the relative-path of the framework.Kris Wong
11/23/2020, 7:14 PMaw
11/23/2020, 7:16 PMpod install
)Kris Wong
11/23/2020, 7:20 PMaw
11/23/2020, 8:30 PMis it executing the script phase and building the framework successfully?not in our iOS App, we just link via cocoapods
the problem with hosting the vendored framework in artifactory is that it will need to be a fat frameworkiosX64 + iosArm64 ?
Kris Wong
11/23/2020, 8:33 PMaw
11/23/2020, 8:34 PMKris Wong
11/23/2020, 8:35 PMaw
11/23/2020, 8:38 PMKris Wong
11/23/2020, 8:49 PMaw
11/23/2020, 8:52 PMs.source
and s.vendored_frameworks
in my podspec
and pod install
runs without error. but when looking into the Pods project, there is no .framework. I am not sure if there is a problem with the podspec or with the framework itselfs.source = { :http => "<url-to-framework.zip>",
:sha1 => "<sha1-checksum-of-zip>" }
pod install
, but thats not the case