We'll first take a look at the AudioKit Cookbook application, which is a great way to see what is possible. Once we've seen some of the capabilities we can look at the code to get an idea of how to build things with AudioKit. We'll then add a package collection in Xcode to make bringing in the various AudioKit package dependencies a little easier.
Before we jump into code, let’s first see what AudioKit can bring to the table. The best way to do this is to explore the AudioKit Cookbook, an open source app for macOS and iOS. In the application you’ll find live demos that show off a number of concepts and tools that AudioKit provides. AudioKit Cookbook You can find the cookbook at https://github.com/audiokit/cookbook. Let’s clone this project and open it in Xcode. Once open you’ll see there is an XCConfig file that is missing from the project. This is intentional so that we can add our own Development Team ID so that we can build and run. This file is also ignored in source control, so it won’t be accidentally committed. If you don’t know your development team ID you can find it by changing the team dropdown in the signing section in Xcode, then take a look at the diff it generates. Alternatively you can visit https://developer.apple.com/account and click on Membership details. We’ll paste this team id into the xcconfig file. Now we can choose our destination. I’m going to build for the Mac, but you could also run this on an iPhone or iPad simulator or device. Some of the demos in here benefit from having multitouch. Adding a Package Collection in Xcode In Xcode, select File → Add Packages... Click the ➕ button on the bottom left Enter https://swiftpackageindex.com/AudioKit/collection.json and click "Load” Allow unsigned collections