forked from vitali-working/cordova-plugin-deezer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
85 lines (74 loc) · 4.24 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-deezer" version="0.0.5" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>DeezerPlugin</name>
<js-module name="DeezerPlugin" src="www/DeezerPlugin.js">
<clobbers target="cordova.plugins.DeezerPlugin" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="DeezerPlugin">
<param name="android-package" value="cordova.plugin.deezer.DeezerPlugin" />
</feature>
</config-file>
<source-file src="src/android/DeezerPlugin.java" target-dir="src/cordova/plugin/deezer/DeezerPlugin" />
<source-file src="src/android/DeezerJSListener.java" target-dir="src/cordova/plugin/deezer/DeezerPlugin" />
<source-file src="src/android/DeezerSDKController.java" target-dir="src/cordova/plugin/deezer/DeezerPlugin" />
<!-- Library files -->
<source-file src="src/android/libs/deezer-sdk_library-release.aar" target-dir="app/libs/" />
<framework custom="true" src="src/android/deezer.gradle" type="gradleReference" />
<!-- Android manifest permissions -->
<config-file target="app/src/main/AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
</config-file>
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="DeezerPlugin">
<param name="ios-package" value="DeezerPlugin" />
</feature>
</config-file>
<source-file src="src/ios/DeezerPlugin.h" />
<source-file src="src/ios/DeezerPlugin.m" />
<source-file src="src/ios/DZplayer.h" />
<source-file src="src/ios/DZplayer.m" />
<framework src= "libicucore.A.dylib" />
<framework src="MediaPlayer.framework"/>
<framework src="SystemConfiguration.framework"/>
<framework src="AudioToolbox.framework"/>
<framework src="CoreAudio.framework"/>
<resource-file src="src/ios/DZRResources.bundle" />
<source-file src="src/ios/libDeezer.a" framework="true"/>
<source-file src="src/ios/include/DZRAlbum.h" />
<source-file src="src/ios/include/DZRArtist.h" />
<source-file src="src/ios/include/DZRCancelable.h" />
<source-file src="src/ios/include/DZRComment.h" />
<source-file src="src/ios/include/DZREditorial.h" />
<source-file src="src/ios/include/DZREpisode.h" />
<source-file src="src/ios/include/DZRFolder.h" />
<source-file src="src/ios/include/DZRGenericCancelable.h" />
<source-file src="src/ios/include/DZRGenre.h" />
<source-file src="src/ios/include/DZRManagedRadio.h" />
<source-file src="src/ios/include/DZRModel.h" />
<source-file src="src/ios/include/DZRNetworkRequest.h" />
<source-file src="src/ios/include/DZRObject+Compatibility.h" />
<source-file src="src/ios/include/DZRObject.h" />
<source-file src="src/ios/include/DZRObjectList.h" />
<source-file src="src/ios/include/DZRPlayableArray.h" />
<source-file src="src/ios/include/DZRPlayer.h" />
<source-file src="src/ios/include/DZRPlaylist.h" />
<source-file src="src/ios/include/DZRPodcast.h" />
<source-file src="src/ios/include/DZRRadio.h" />
<source-file src="src/ios/include/DZRRequestManager.h" />
<source-file src="src/ios/include/DZRTrack.h" />
<source-file src="src/ios/include/DZRUser.h" />
<source-file src="src/ios/include/Deezer+Compatibility.h" />
<source-file src="src/ios/include/DeezerConnect+Compatibility.h" />
<source-file src="src/ios/include/DeezerConnect.h" />
<source-file src="src/ios/include/DeezerRequestDelegate.h" />
<source-file src="src/ios/include/NSBundle+DZRBundle.h" />
<source-file src="src/ios/include/NSError+DZRModel.h" />
<source-file src="src/ios/include/NSError+DZRPlayer.h" />
</platform>
</plugin>