feat: Remove unused link lib

This commit is contained in:
Boyko Mihail 2021-04-29 10:19:01 +03:00
parent f62f4608bb
commit b280eb77c3
2 changed files with 1 additions and 3 deletions

View File

@ -24,7 +24,7 @@ let package = Package(
.target(name: "TIUIKitCore", path: "TIUIKitCore/Sources"),
.target(name: "TISwiftUtils", path: "TISwiftUtils/Sources"),
.target(name: "TIFoundationUtils", dependencies: ["TISwiftUtils"], path: "TIFoundationUtils/Sources"),
.target(name: "TIKeychainUtils", dependencies: ["TISwiftUtils"], path: "TIKeychainUtils/Sources"),
.target(name: "TIKeychainUtils", dependencies: ["TIFoundationUtils"], path: "TIKeychainUtils/Sources"),
.target(name: "TIUIElements", dependencies: ["TIUIKitCore", "TISwiftUtils"], path: "TIUIElements/Sources"),
.target(name: "TITableKitUtils", dependencies: ["TIUIElements", "TableKit"], path: "TITableKitUtils/Sources"),
.target(name: "OTPSwiftView", dependencies: ["TIUIElements"], path: "OTPSwiftView/Sources")

View File

@ -12,8 +12,6 @@ Pod::Spec.new do |s|
s.source_files = s.name + '/Sources/**/*'
s.dependency 'TISwiftUtils', s.version.to_s
s.dependency 'TIFoundationUtils', s.version.to_s
s.dependency 'KeychainAccess'
s.framework = 'Foundation'
end