华惠友

Results 3 issues of 华惠友

![image](https://user-images.githubusercontent.com/19401011/152755793-65d8cb05-f478-4847-9b7a-e72261a746da.png) Swift 通过 modulemap 打成的二进制包并没有 .a 文件呀

我通过在podfile 中声明使用 use_modular_headers! 进行 SwifterSwift 的静态库打包 在将源码切换成二进制后 在主工程中无法通过 import SwifterSwift 进行调用该库 发现生成静态库时没有 SwifterSwift.modulemap 文件 这是cocoapods-imy-bin 生成的静态库 ![image](https://user-images.githubusercontent.com/19401011/149260923-4bd612b8-5c3a-4f00-abbe-678a0f404c35.png) 这是Cocoapods编译生成静态库 ![image](https://user-images.githubusercontent.com/19401011/149260863-be3fd5c1-0bbe-40e2-abaf-bb52c5ccd3cf.png)

![image](https://user-images.githubusercontent.com/19401011/148029023-e9adc5e3-6945-44e8-80e8-e8012fde815d.png) 比如这里我依赖了Moya库 而Moya默认依赖有Alamofire 这里编译二进制时提示无法导入Alamofire 而如果只是依赖Alamofire时则可以成功 那么我改如果配置才能让他打包二进制时可以找到Alamofire呢