【Swift5】TabPageViewControllerのインストールができない(Carthage)
無限スクロール機能を実装したく、TabPageViewControllerというライブラリを導入したいのですがエラーが発生してしまい、導入できません。
ライブラリ管理にはCarthageを使っています。
エラー内容
[13:20:25]:~/hoge$ carthage update --platform iOS
*** Fetching TabPageViewController
*** Fetching R.swift.Library
*** Checking out R.swift.Library at "v5.2.0"
*** Checking out TabPageViewController at "0.2.7"
*** xcodebuild output can be found in /var/folders/7c/0my9x1hj0zz2j6x04jbjdnlm0000gn/T/carthage-xcodebuild.an8cjW.log
*** Building scheme "Rswift-iOS" in R.swift.Library.xcodeproj
*** Building scheme "TabPageViewController" in TabPageViewController.xcodeproj
Build Failed
Task failed with exit code 65:
/usr/bin/xcrun xcodebuild -project /Users/hogehoge/CurationApp/Carthage/Checkouts/TabPageViewController/TabPageViewController.xcodeproj -scheme TabPageViewController -configuration Release -derivedDataPath /Users/hogehoge/Library/Caches/org.carthage.CarthageKit/DerivedData/11.5_11E608c/TabPageViewController/0.2.7 -sdk iphoneos ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= CARTHAGE=YES archive -archivePath /var/folders/7c/0my9x1hj0zz2j6x04jbjdnlm0000gn/T/TabPageViewController SKIP_INSTALL=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=NO CLANG_ENABLE_CODE_COVERAGE=NO STRIP_INSTALLED_PRODUCT=NO (launched in /Users/hogehoge/CurationApp/Carthage/Checkouts/TabPageViewController)
This usually indicates that project itself failed to compile. Please check the xcodebuild log for more details: /var/folders/7c/0my9x1hj0zz2j6x04jbjdnlm0000gn/T/carthage-xcodebuild.an8cjW.log
[13:32:39]:~/CurationApp$ open /var/folders/7c/0my9x1hj0zz2j6x04jbjdnlm0000gn/T/carthage-xcodebuild.an8cjW.log
ログファイルの中身は
Build settings from command line:
CARTHAGE = YES
CLANG_ENABLE_CODE_COVERAGE = NO
CODE_SIGN_IDENTITY =
CODE_SIGNING_REQUIRED = NO
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = NO
ONLY_ACTIVE_ARCH = NO
SDKROOT = iphoneos13.5
SKIP_INSTALL = YES
STRIP_INSTALLED_PRODUCT = NO
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description
error: SWIFT_VERSION '3.0' is unsupported, supported versions are: 4.0, 4.2, 5.0. (in target 'TabPageViewController' from project 'TabPageViewController')
error: SWIFT_VERSION '3.0' is unsupported, supported versions are: 4.0, 4.2, 5.0. (in target 'TabPageViewController' from project 'TabPageViewController')
となっております。
試したこと
XcodeのProjectとTargetのSwift Language versionを全て「Swift 5」に設定し、再度実行しましたが変わりませんでした。
このライブラリはSwift 5では使えないのでしょうか・
また、使えないのであれば、代わりとなるライブラリを教えていただけると幸いです
0