-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
57 lines (42 loc) · 2.17 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.quantumrand.amazonAdsPlugin"
version="0.1.1">
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>AmazonAdsPlugin</name>
<description>PhoneGap Amazon Ads Plugin</description>
<author>QuantumRand</author>
<license>MIT</license>
<keywords>phonegap,amazon,ads</keywords>
<js-module src="www/amazonAdsPlugin.js" name="AmazonAdsPlugin">
<clobbers target="amazonAdsPlugin" />
</js-module>
<!-- android -->
<platform name="android">
<source-file src="src/android/src/com/quantumrand/AmazonAdsPlugin.java" target-dir="src/com/quantumrand/amazonAdsPlugin" />
<source-file src="src/android/libs/amazon-ads-5.5.102.jar" target-dir="libs" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AmazonAdsPlugin">
<param name="android-package" value="com.quantumrand.amazonAdsPlugin.AmazonAdsPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.amazon.device.ads.AdActivity" android:configChanges="keyboardHidden|orientation|screenSize"/>
</config-file>
</platform>
<!-- fireos -->
<platform name="amazon-fireos">
<source-file src="src/amazon/src/com/quantumrand/AmazonAdsPlugin.java" target-dir="src/com/quantumrand/amazonAdsPlugin" />
<source-file src="src/android/libs/amazon-ads-5.5.102.jar" target-dir="libs" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AmazonAdsPlugin">
<param name="android-package" value="com.quantumrand.amazonAdsPlugin.AmazonAdsPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.amazon.device.ads.AdActivity" android:configChanges="keyboardHidden|orientation|screenSize"/>
</config-file>
</platform>
</plugin>