passepartoutvpn / tunnelkit

VPN client library for Apple platforms.
GNU General Public License v3.0
3 stars 2 forks source link

xcode 13 pod install fail #216

Closed plkgq closed 2 years ago

plkgq commented 2 years ago

When I created a new project using xcode 13, I just executed pod install and the installation failed image

plkgq commented 2 years ago

cocoapod version is 1.11.2

keeshux commented 2 years ago

Please share your Podfile.

plkgq commented 2 years ago

请分享您的Podfile.

image

plkgq commented 2 years ago

platform :ios, '12.0' use_frameworks!

target 'SwiftVPN' do pod 'WKWebViewJavascriptBridge' pod 'SwiftyJSON' pod 'DeviceKit' pod 'KakaJSON' pod 'CocoaLumberjack/Swift' pod 'Toast-Swift' pod 'FFRouter' pod 'JKSwiftExtension' pod 'DynamicColor' pod 'GTMBase64' pod 'Cartography' pod 'MJRefresh' pod 'LSTPopView' pod 'Firebase/Analytics' pod 'Firebase/Crashlytics' pod 'Firebase/RemoteConfig' pod 'Firebase/Messaging' pod 'YYCache' pod 'WHC_KeyboardManager' pod 'CocoaDebug', :configurations => ['Debug'] pod 'CryptoSwift', '~> 1.4.0' pod 'SwiftyRSA' pod 'YYText' pod 'Eureka' pod 'SwiftEntryKit' pod 'lottie-ios' pod 'LGSideMenuController' pod 'SkyFloatingLabelTextField' pod 'JXSegmentedView' pod 'AppsFlyerFramework' pod 'Alamofire' pod 'Moya' pod 'Kingfisher' pod 'SnapKit' pod 'KeychainAccess' pod 'SVProgressHUD' pod 'TunnelKit' end

this is another project podfile

keeshux commented 2 years ago

Just tested on Xcode 13 with the same Podfile without any issue. CocoaPods also 1.11.2

platform :ios, '12.0'

target 'TestTunnelKit (iOS)' do
    use_frameworks!
    pod 'TunnelKit'
end
plkgq commented 2 years ago

Just tested on Xcode 13 with the same Podfile without any issue. CocoaPods also 1.11.2

platform :ios, '12.0'

target 'TestTunnelKit (iOS)' do
    use_frameworks!
    pod 'TunnelKit'
end

I think I solved it, it should be pod cache problem, pod cache clean --all, it succeeded