-
Notifications
You must be signed in to change notification settings - Fork 7
/
plugin.xml
41 lines (37 loc) · 1.43 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-remotecommand"
version="1.0.1"
>
<name>RemoteCommand</name>
<description>Cordova RemoteCommand Plugin</description>
<license>MIT</license>
<keywords>cordova,media,lockscreen,commandcenter,command,MPRemoteComman</keywords>
<repo>https://github.com/Muntligt/cordova-plugin-nowplaying.git</repo>
<issue>https://github.com/Muntligt/cordova-plugin-nowplaying/issues</issue>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<js-module src="www/RemoteCommand.js" name="RemoteCommand">
<clobbers target="window.RemoteCommand" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="RemoteCommand">
<param name="ios-package" value="MRemoteCommand" />
</feature>
</config-file>
<header-file src="src/ios/MRemoteCommand.h" />
<source-file src="src/ios/MRemoteCommand.m" />
<framework src="MediaPlayer.framework" weak="true" />
</platform>
<!-- browser -->
<platform name="browser">
<js-module src="src/browser/MRemoteCommand.js" name="MRemoteCommand">
<clobbers target="window.RemoteCommand" />
</js-module>
</platform>
</plugin>