0

我正在关注如何使用 React Native 设置 OneSignal 的本指南。在它说的部分中In your Podfile, add the notification service extension...,它说将以下内容添加到我的 Podfile 中:

target 'OneSignalNotificationServiceExtension' do
  pod 'OneSignal', '>= 2.9.3', '< 3.0'
end

我认为这已经过时了,因为我的版本react-native-onesignal是 3.7.2。我应该如何更改我的 Podfile 中的这一行以适应这个新版本?

4

1 回答 1

1

您尚未指定您认为合适的版本范围,但如果此 Pod 遵循仅在主要版本更改时发生重大更改的通用约定,那么您将使用约束

target 'OneSignalNotificationServiceExtension' do
  pod 'OneSignal', '>= 3.7.2', '< 4.0'
end
于 2020-04-14T22:34:13.260 回答