August 2017
Beginner to intermediate
392 pages
8h 20m
English
We can now create an internal plugin to integrate this iOS framework into our app. Take the custom AudioKit.framework we have built and create a nativescript-audiokit directory at the root of our app. We then add a platforms/ios folder inside to drop the framework into. This will let NativeScript know how to build these iOS-specific files into the app. As we want this internal plugin to be treated like any standard npm plugin, we will also add package.json directly inside the nativescript-audiokit folder with the following contents:
{ "name": "nativescript-audiokit", "version": "1.0.0", "nativescript": { "platforms": { "ios": "3.0.0" } }}
We will now use the following command to add ...
Read now
Unlock full access