Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swift Package Manager Support #270

Open
hajjD opened this issue Dec 4, 2020 · 4 comments
Open

Swift Package Manager Support #270

hajjD opened this issue Dec 4, 2020 · 4 comments

Comments

@hajjD
Copy link

hajjD commented Dec 4, 2020

Can Swift Package Manager be added as an alternative to cocoapods/cathridge

@hartti
Copy link

hartti commented Feb 28, 2021

I tested a little around, by cloning the repository and trying to create a Package.swift file for it. The result of my trials is below. Just adding this file (note that the file contents might not be completely correct but it seems to work) and creating a new version should do it

Package.swift

// swift-tools-version:5.3
import PackageDescription

let package = Package(
name: "SpreadsheetView",
platforms: [ .iOS(.v9) ],
products: [
.library(
name: "SpreadsheetView",
targets: ["SpreadsheetView"]),
],
dependencies: [
],
targets: [
.target(
name: "SpreadsheetView",
dependencies: [],
path: "Framework/Sources")
],
swiftLanguageVersions: [.v5]
)

@jarrodparkes
Copy link

@hartti trying to push this forward with #276

@scriptprojectsdev
Copy link

Not sure what the status of SPM support is. In the mean time I forked the repo and added the above Package.swift file and it works as of 01-06-2023. You can find it at https://github.com/scriptprojectsdev/SpreadsheetView

@FadyFaheem
Copy link

I've begun maintaining the whole repository. if you'd like to have it kept up to date, use https://github.com/BTAProgrammers/SpreadsheetView

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants