GTM(Google Tag Manager)6.0 和 Firebase Analytics 5.0 版本冲突



新的 Firebase 版本 5.0 导致与 Google 跟踪代码管理器的版本冲突。有人对此有解决方案吗?

容器文件:

# Analytics
pod 'Firebase/RemoteConfig', '~> 5.0.0'
pod 'Firebase/Core', '~> 5.0.0'
pod 'GoogleTagManager', '~> 6.0'
pod 'GoogleIDFASupport'
pod 'GooglePlaces', '~> 2.7.0'

我在pod 安装出错

[!] CocoaPods could not find compatible versions for pod "FirebaseAnalytics":
In Podfile:
Firebase/Core (~> 5.0.0) was resolved to 5.0.0, which depends on
FirebaseAnalytics (= 5.0.0)
Firebase/RemoteConfig (~> 5.0.0) was resolved to 5.0.0, which depends on
FirebaseRemoteConfig (= 3.0.0) was resolved to 3.0.0, which depends on
FirebaseAnalytics (~> 5.0)
GoogleTagManager (~> 6.0) was resolved to 6.0.0, which depends on
FirebaseAnalytics (~> 4.0)

最后谷歌发布了谷歌标签管理器吊舱版本7.0.0,这个问题得到了解决

更新:此问题已在GoogleTagManager 7.0.0中解决。

过时的答案:Firebase Analytics 5.x中似乎没有向后不兼容的更改,主要版本颠簸是由于iOS 7支持的下降。 这对我的项目来说不是问题,所以我只是为GoogleTagManager创建了补丁的podspec。

GoogleTagManager.podspec.json

{
"authors": "Google, Inc.",
"dependencies": {
"FirebaseAnalytics": "~> 5.0",
"GoogleAnalytics": "~> 3.17",
"GoogleUtilities": "~> 1.3"
},
"description": "Google Tag Manager is a tool to easily deploy analytics and marketing tags.",
"frameworks": [
"AdSupport",
"CoreTelephony",
"JavaScriptCore",
"SystemConfiguration",
"UIKit"
],
"homepage": "https://www.google.com/tagmanager",
"libraries": [
"sqlite3",
"z"
],
"license": {
"text": "Copyright 2017 Google",
"type": "Copyright"
},
"name": "GoogleTagManager",
"platforms": {
"ios": "7.0"
},
"resources": [
"Frameworks/frameworks/GoogleTagManager.framework/Resources/TagManagerResources.bundle"
],
"source": {
"http": "https://dl.google.com/dl/cpdc/07041f585a34f209/GoogleTagManager-6.0.0.tar.gz"
},
"summary": "Google Tag Manager - create and update tags easily",
"vendored_frameworks": [
"Frameworks/frameworks/GoogleTagManager.framework"
],
"version": "6.0.0"
}

豆荚文件

pod 'GoogleTagManager', podspec: './GoogleTagManager.podspec.json'

相关内容

  • 没有找到相关文章

最新更新