i have ios framework and i am distributing it. I am not using dependency management tool like cocoapods. There is a lot of document that explain how to remove invalid architectures. But all of them i saw making it in client project not in the framework side.
example: https://www.tirupatibalan.com/2019/01/05/create-fat-framework.html
The question is how can i remove invalid architecture in my framework project when client app try to archive?
I don't want add extra script in client app, therefore i must solve this in framework project side
I have a fat library. And i am creating this library with script in build phases with aggregate target.
Thanks.