将 Flurry Analytics 集成到 Apple Watch

Integrate Flurry Analytics to Apple Watch

我正在尝试将 Flurry Analytics 集成到我的 Apple Watch 应用程序中。我的应用程序是一个独立的应用程序,没有 iPhone 伴侣。我在 Yahoo Developer 上看到一个 article,它给出了相关说明,但它现在已有 5 年多的历史了。我遵循了那篇文章中的所有说明,除了为 podfile 做了一点修改。这是我的代码

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'Watch Idle Game' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
  pod ‘Flurry-iOS-SDK/FlurryWatchOSSDK’
  pod ‘Flurry-iOS-SDK/FlurrySDK'
  platform :watchos, ‘7.2’

end

target 'Watch Idle Game WatchKit App' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
  pod ‘Flurry-iOS-SDK/FlurryWatchOSSDK’
  pod ‘Flurry-iOS-SDK/FlurrySDK'
  platform :watchos, ‘7.2’

  # Pods for Watch Idle Game WatchKit App

end

target 'Watch Idle Game WatchKit Extension' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
  pod ‘Flurry-iOS-SDK/FlurryWatchOSSDK’
  pod ‘Flurry-iOS-SDK/FlurrySDK'
  platform :watchos, ‘7.2’

end

尝试此操作后,Xcode 说 Flurry Analytics 模块仍然不存在。我想知道,Flurry Analytics 是否可以在独立的 Apple Watch 应用程序上运行?

Flurry SDK 目前不支持独立的 Watch 应用程序。它仅适用于关联的 iPhone 应用程序。