Ios 当我收到此消息时,如何在Xcode中升级Google Mobile Ads SDK:<;谷歌:HTML>;您当前正在使用SDK的7.6.0版?

Ios 当我收到此消息时,如何在Xcode中升级Google Mobile Ads SDK:<;谷歌:HTML>;您当前正在使用SDK的7.6.0版?,ios,xcode,admob,Ios,Xcode,Admob,当我在模拟器中运行iOS应用程序时,我在Xcode中收到以下日志消息: <Google:HTML> You are currently using version 7.6.0 of the SDK. Please consider updating your SDK to the most recent SDK version to get the latest features and bug fixes. The latest SDK can be downloaded from

当我在模拟器中运行iOS应用程序时,我在Xcode中收到以下日志消息:

<Google:HTML> You are currently using version 7.6.0 of the SDK. Please consider updating your SDK to the most recent SDK version to get the latest features and bug fixes. The latest SDK can be downloaded from https://developers.google.com/admob/ios/download. A full list of release notes is available at https://developers.google.com/admob/ios/rel-notes.
您当前使用的是SDK的7.6.0版。请考虑将SDK更新到最新的SDK版本,以获取最新的特性和错误修复。最新SDK可从以下站点下载:https://developers.google.com/admob/ios/download. 有关发行说明的完整列表,请访问https://developers.google.com/admob/ios/rel-notes.

我下载了最新的SDK,现在如何在我的应用程序中更新它?

这取决于您如何在项目中导入
GoogleSDK

1) 如果您使用了
.pod
文件,则只需更新pod即可

2) 如果您已手动导入,则只需将当前SDK文件夹替换为新下载的SDK文件夹即可


就这样

如果您在以前的项目版本中手动导入了框架,并且选择了“复制到您的文件”,那么旧框架的副本将位于Xcode项目文件夹中,并将被引用。删除Xcode项目文件中的旧框架,并使用Finder删除Xcode项目文件夹中的旧框架。然后在Xcode中添加新的框架文件夹(这也将在该Xcode项目文件夹中放置一个副本)。
清理和重建

如果您懂英语,那么在Admob的xcode中收到的消息中明确表示**可以从下载最新的SDK。发布说明的完整列表可在。**获得,那么您为什么不至少检查house链接并尝试下载新的并替换为old@NitinGohel是的,我注意到我所要做的就是把新的拖放到项目文件夹中。谢谢