skiptools / skip-av

Media player framework for Skip apps
GNU Lesser General Public License v3.0
7 stars 2 forks source link

Do I need to do anything special when using the skip-av package? #2

Open TakeruYufune opened 1 month ago

TakeruYufune commented 1 month ago

I want to use AVKit with Skip, but I can't because the project is created without skip-av package.

Do I need to add any optional commands to skip init?

The build without AVKit works fine. skip checkup is also all clear.

aabewhite commented 1 month ago

skip-av is a SwiftPM package, and you can add it as a dependency in your Package.swift file, just as you would add any other SwiftPM dependency. For example our Showcase sample app uses skip-av, and here is its Package.swift file:

https://github.com/skiptools/skipapp-showcase/blob/main/Package.swift

Please let us know if you have any trouble adding it.

TakeruYufune commented 1 month ago

Thank you so much! I was able to use skip-av in my development environment!