-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
81 lines (70 loc) · 3.03 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
<?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="com.cahri.phonegap.epom"
version="1.0.0">
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>Epom ads</name>
<description>This is a phonegap plugin (3.x) for the epom adserver iOS and Android SDKs.</description>
<author>Cahri SARL</author>
<keywords>epom, ad server</keywords>
<license>Apache 2.0 License</license>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="EpomAdsPlugin" >
<param name="android-package" value="com.cahri.phonegap.epom"/>
</feature>
</config-file>
<js-module src="www/EpomAdsPlugin.js" name="Epom">
<clobbers target="epom" />
</js-module>
<source-file src="src/android/EpomAdsPlugin.java"
target-dir="src/com/cahri/phonegap/epom" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Epom">
<param name="ios-package" value="EpomAdsPlugin"/>
</feature>
</config-file>
<js-module src="www/EpomAdsPlugin.js" name="Epom">
<clobbers target="epom" />
</js-module>
<header-file src="src/ios/EpomAdsPlugin.h" />
<source-file src="src/ios/EpomAdsPlugin.m" compiler-flags="-fno-objc-arc"/>
<header-file src="src/ios/include/ESBannerView.h" />
<header-file src="src/ios/include/ESBannerViewDelegate.h" />
<header-file src="src/ios/include/ESEnumerations.h" />
<header-file src="src/ios/include/ESInterstitialView.h" />
<header-file src="src/ios/include/ESInterstitialViewDelegate.h" />
<header-file src="src/ios/include/ESUtils.h" />
<header-file src="src/ios/include/ESVersion.h" />
<source-file src="src/ios/lib/libepom.a" framework="true" compiler-flags="-fno-objc-arc"/>
<framework src="AdSupport.framework" />
<framework src="AudioToolbox.framework" />
<framework src="AVFoundation.framework" />
<framework src="CFNetwork.framework" />
<framework src="CoreFoundation.framework" />
<framework src="CoreGraphics.framework" />
<framework src="CoreLocation.framework" />
<framework src="CoreMotion.framework" weak="true"/>
<framework src="CoreTelephony.framework" weak="true"/>
<framework src="EventKit.framework" weak="true"/>
<framework src="iAd.framework" weak="true"/>
<framework src="MediaPlayer.framework" weak="true"/>
<framework src="MessageUI.framework" weak="true"/>
<framework src="MobileCoreServices.framework" />
<framework src="QuartzCore.framework" />
<framework src="MobileCoreServices.framework" />
<framework src="PassKit.framework" />
<framework src="Security.framework" />
<framework src="StoreKit.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="UIKit.framework" weak="true"/>
<framework src="libsqlite3.dylib" />
<framework src="libz.dylib" />
<framework src="libxml2.dylib" />
</platform>
</plugin>