-
Notifications
You must be signed in to change notification settings - Fork 4
/
plugin.xml
26 lines (24 loc) · 1.02 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-applemusic" version="1.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<name>Cordova Apple Music</name>
<js-module name="appleMusic" src="www/appleMusic.js">
<clobbers target="appleMusic"/>
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="AppleMusic">
<param name="ios-package" value="CordovaAppleMusic"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<config-file target="*-Info.plist" parent="NSAppleMusicUsageDescription">
<string>Allow access to your Music Library.</string>
</config-file>
<header-file src="src/ios/CordovaAppleMusic.h"/>
<source-file src="src/ios/CordovaAppleMusic.m"/>
</platform>
</plugin>