我正在Unity项目中使用https://drive.google.com/open?id=1Sc5ANjomztd6quqqkAx4HMLEXAHyhZcf来管理Cocoapods。我可以添加吊舱,但看不到删除吊舱的方法。
我已经搜索了源文件,但似乎没有“ RemovePod”方法。这些广告连播存储在私人字典中。
我使用以下方法添加广告连播:
Type iOSResolver = Google.VersionHandler.FindClass("Google.IOSResolver", "Google.IOSResolver");
Google.VersionHandler.InvokeStaticMethod(
iOSResolver, "AddPod",
new object[] { podName },
namedArgs: namedArgs
);
是否有一种以后可以删除吊舱的方法?