三国卡牌客户端基础资源仓库
yyl
3 天以前 47921ce315e894bbbed712cbf04ee358be345113
Assets/Editor/XCodeProjectMod.cs
@@ -77,6 +77,16 @@
            }
        }
        // hfsdk.xcframework 添加到工程并设置为 Embed & Sign
        string hfFrameworkPath = path + "/Frameworks/hfsdk.xcframework";
        if (Directory.Exists(hfFrameworkPath))
        {
            string fileGuid = project.AddFile(hfFrameworkPath, "Frameworks/hfsdk.xcframework", PBXSourceTree.Source);
            project.AddFileToBuild(fwTargetGUID, fileGuid);
            // Embed & Sign: 添加到 main target 的 Embed Frameworks
            project.AddFileToBuild(targetGUID, fileGuid);
        }
        // Adjust SDK 依赖的系统框架(文档要求 Status 设为 Optional)
        project.AddFrameworkToProject(fwTargetGUID, "AdServices.framework", true);
        project.AddFrameworkToProject(fwTargetGUID, "AdSupport.framework", true);