-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·100 lines (84 loc) · 4.39 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.plugin.widespace" version="4.5.0">
<name>Widespace SDK</name>
<description>
The Widespace SDK allows application and mobile web developers to easily make use of the Widespace ad system in their applications and mobile web sites. The SDK is fully supported and maintained, so you as a developer can offer your users a premium experience for free.
Widespace offers a range of the most creative and interaction-enticing advertisements in the business.
</description>
<license>Apache 2.0</license>
<keywords>widespace,cordova,android,ios</keywords>
<repo>https://bitbucket.org/widespacegit/cordova-plugin-widespace-sdk.git</repo>
<engines>
<engine name="cordova" version=">=3.0" />
</engines>
<js-module src="www/widespace.js" name="Widespace">
<clobbers target="window.plugins.widespace" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Widespace">
<param name="android-package" value="com.encode.widespace.Widespace" />
</feature>
</config-file>
<config-file target="config.xml" parent="/*">
<preference name="KeepRunning" value="true" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
</config-file>
<framework src="src/android/widespace.gradle" custom="true" type="gradleReference" />
<source-file src="src/android/libs/widespace-sdk-4.8.2.aar" target-dir="libs" />
<source-file src="src/android/Widespace.java" target-dir="src/com/encode/widespace" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BackgroundMode">
<param name="ios-package" value="APPBackgroundMode" onload="true" />
<param name="onload" value="true" />
</feature>
<feature name="Widespace">
<param name="ios-package" value="CDVWidespace"/>
</feature>
</config-file>
<config-file target="*-Info.plist" parent="NSLocationWhenInUseUsageDescription">
<key>NSLocationWhenInUseUsageDescription</key>
<string>We use your location to improve your experience.</string>
</config-file>
<config-file target="*-Info.plist" parent="NSCalendarsUsageDescription">
<key>NSLocationWhenInUseUsageDescription</key>
<string>We would like to store an event you where interested in.</string>
</config-file>
<config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<key>NSLocationWhenInUseUsageDescription</key>
<string>We would like to access your photos.</string>
</config-file>
<config-file target="*-Info.plist" parent="NSMicrophoneUsageDescription">
<key>NSLocationWhenInUseUsageDescription</key>
<string>You where about to tell us something.</string>
</config-file>
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<key>NSLocationWhenInUseUsageDescription</key>
<string>You want to show us something.</string>
</config-file>
<header-file src="src/ios/CDVWidespace.h" />
<source-file src="src/ios/CDVWidespace.m" />
<framework src="src/ios/WSLibrary.framework" custom="true" />
<framework src="AdSupport.framework" />
<framework src="AVFoundation.framework" />
<framework src="AssetsLibrary.framework" />
<framework src="CoreGraphics.framework" />
<framework src="CoreLocation.framework" />
<framework src="CoreMedia.framework" />
<framework src="CoreMotion.framework" />
<framework src="CoreTelephony.framework" />
<framework src="CoreVideo.framework" />
<framework src="EventKit.framework" />
<framework src="EventKitUI.framework" />
<framework src="QuartzCore.framework" />
<framework src="SafariServices.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="UIKit.framework" />
<framework src="WebKit.framework" />
<hook type="before_plugin_install" src="scripts/ios/repair-symlinks.js" />
</platform>
</plugin>