I wonder If there exists any way to change the content of PodName-umbrella.h?
Or somehow to pass my own through podspec DSL.
I need to add import to umbrella header or ideally change all content to this:
// PodName-umbrella.h
@import MyAnotherPod;
Also, I can use a custom module_map.
But I couldn't figure out how to use the correct path to the header file from my pod.
framework module PodName {
header "MyAnotherPod.h" // ⛔️ Header 'MyAnotherPod.h' not found
}