Skip to content

Commit

Permalink
Merge pull request #28 from igorkulman/master
Browse files Browse the repository at this point in the history
Swift Package Manager support
  • Loading branch information
renssies committed Oct 7, 2019
2 parents 9a5a113 + a432914 commit 0aafc77
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "Tatsi",
platforms: [
.iOS(.v10)
],
products: [
.library(name: "Tatsi", targets: ["Tatsi"]),
],
targets: [
.target(name: "Tatsi", path: "Tatsi"),
]
)
1 change: 1 addition & 0 deletions Tatsi/Extensions/PHAssetCollectionExtensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import Foundation
import Photos
import ObjectiveC
import UIKit

extension PHAssetCollection {

Expand Down
1 change: 1 addition & 0 deletions Tatsi/Protocols/PickerViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import Foundation
import Photos
import UIKit

protocol PickerViewController {

Expand Down
1 change: 1 addition & 0 deletions Tatsi/UIElements/CameraIconView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit

final internal class CameraIconView: UIView {

Expand Down
1 change: 1 addition & 0 deletions Tatsi/UIElements/LocalizableStrings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit

final internal class LocalizableStrings {

Expand Down
1 change: 1 addition & 0 deletions Tatsi/UIElements/TypeIcons.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit

// swiftlint:disable type_body_length function_body_length
final internal class TypeIcons {
Expand Down

0 comments on commit 0aafc77

Please sign in to comment.