简体   繁体   English

类SSKeychain在framwork和appilcation iOS中实现

[英]Class SSKeychain is implemented in both framwork and appilcation iOS

My podfile: 我的podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.1'

target 'xxx' do
  pod 'GooglePlaces'
  pod 'RSKImageCropper'
  pod 'AFNetworking', '~> 3.0'
  pod 'DZNEmptyDataSet'
  pod 'Base64', '~> 1.1.2'
  pod 'BGTableViewRowActionWithImage'
  pod 'Google/CloudMessaging'
  pod 'Google/Analytics'
  pod 'TYMProgressBarView'
  pod 'Fabric'
  pod 'Crashlytics'
  pod 'NestSDK'
end

在此输入图像描述

I have this error message in console : 我在控制台中有此错误消息:

objc[3645]: Class SSKeychain is implemented in both /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices (0x1b27d32b0) and /var/containers/Bundle/Application/9A955CA3-9741-4867-9307-0870BBD6CF08/xxx.app/xxx (0x10112eab8). objc [3645]:类SSKeychain在/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices(0x1b27d32b0)和/var/containers/Bundle/Application/9A955CA3-9741-4867-9307-0870BBD6CF08/xxx.app/中实现。 xxx(0x10112eab8)。 One of the two will be used. 将使用两者之一。 Which one is undefined. 哪一个未定义。

In iOS 10 there is a private class called SSKeychain. 在iOS 10中有一个名为SSKeychain的私有类。 That's why you are getting this error. 这就是你得到这个错误的原因。 Because of this the SSKeychain has been renamed to SAMKeychain . 因此, SSKeychain 已重命名SAMKeychain

Since you haven't implicitly added SSKeychain in your Podfile , I suppose it's a dependency of one of other Pods you use. 由于您没有在SSKeychain中隐式添加SSKeychain ,我认为它是您使用的其他Podfile之一的依赖项。 You can find this out by looking into Podfile.lock . 你可以通过查看Podfile.lock找到它。 Once you found the library which has this dependency check if its podspec has been already updated to use SAMKeychain instead. 一旦找到具有此依赖关系的库,请检查其podspec是否已更新为使用SAMKeychain

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 iOS 单元测试:类在两者中都实现 - iOS Unit Testing: Class is implemented in both 在衍生数据和应用程序中实现的类(iOS,Google Drive SDK) - Class implemented in both Derived Data and Application (iOS, Google Drive SDK) Xcode 12 beta 和 iOS 14:奇怪的控制台日志“objc [5551]:Class ...在两者中都实现了” - Xcode 12 beta and iOS 14: Weird console logs "objc[5551]: Class ... is implemented in both" 我在 xcode 12.5 模拟器 iphone 11 ios 14.5 objc[38321] 中构建应用程序时遇到此问题:Class CSAudioFileManager is implementation in both - I am getting this issue when building an app in xcode 12.5 simulator iphone 11 ios 14.5 objc[38321]: Class CSAudioFileManager is implemented in both iOS 中的 OpenCV:Class VideoWriter 在 AutoLoop.framework 和 Runner.app 中实现。 将使用两者之一。 哪个是未定义的 - OpenCV in iOS: Class VideoWriter is implemented in both AutoLoop.framework and Runner.app. One of the two will be used. Which one is undefined Xcode项目在转换为Swift 4后,仍然崩溃,“两者都实现了类……” - Xcode project keeps crashing after converting to Swift 4, “Class implemented in both…” 如何修复“objc [29072]:Class CLSUserDefaults 在两者中都实现”崩溃? - How to fix “objc[29072]: Class CLSUserDefaults is implemented in both” crash? Class 当我单击文本字段时,_PointQueue 在两者中都实现了...我该如何解决这个问题? - Class _PointQueue is implemented in both when I click on textfield... How can I resolve this issue? 如何在同一个快速框架中访问其他类? - how to access other class in same swift framwork? 两者均实现了RTCCVPixelBuffer类,将使用两者之一。 哪一个未定义 - Class RTCCVPixelBuffer is implemented in both, One of the two will be used. Which one is undefined
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM