-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.xml
42 lines (37 loc) · 1.41 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
42
<?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-nowplaying"
version="1.0.3"
>
<name>NowPlaying</name>
<description>Cordova NowPlaying Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,media,audio,video,nowplaying,MPNowPlayingInfoCenter,lockscreen</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/NowPlaying.js" name="NowPlaying">
<clobbers target="window.NowPlaying" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="NowPlaying">
<param name="ios-package" value="MNowPlaying" />
</feature>
</config-file>
<header-file src="src/ios/MNowPlaying.h" />
<source-file src="src/ios/MNowPlaying.m" />
<framework src="MediaPlayer.framework" weak="true" />
</platform>
<!-- browser -->
<platform name="browser">
<js-module src="src/browser/MNowPlaying.js" name="MNowPlaying">
<clobbers target="window.NowPlaying" />
</js-module>
</platform>
</plugin>