forked from floatinghotpot/cordova-plugin-admob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
58 lines (50 loc) · 2.11 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
<?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.rjfun.cordova.plugin.admob"
version="2.0.3">
<name>AdMob</name>
<description>The most popular AdMob plugin for PhoneGap and Cordova, support latest Android (with Google Play Services), iOS and Windows Phone SDK. Easy-to-use API. Actively maintained.</description>
<author>Liming Xie</author>
<license>MIT</license>
<keywords>ad,admob,google,play,services,iad,flurry</keywords>
<repo>https://github.com/floatinghotpot/cordova-plugin-admob.git</repo>
<issue>https://github.com/floatinghotpot/cordova-plugin-admob/issues</issue>
<engines>
<engine name="cordova" version=">=2.9" />
</engines>
<js-module src="www/AdMob.js" name="AdMob">
<clobbers target="window.plugins.AdMob" />
</js-module>
<!-- android -->
<platform name="android">
<dependency id="com.google.admobsdk-googleplay" version=">=5.0.89"/>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AdMob">
<param name="android-package" value="com.rjfun.cordova.plugin.AdMob"/>
</feature>
</config-file>
<source-file src="src/android/AdMob.java" target-dir="src/com/rjfun/cordova/plugin" />
</platform>
<!-- ios -->
<platform name="ios">
<dependency id="com.google.admobsdk-ios" version=">=6.11.1"/>
<config-file target="config.xml" parent="/*">
<feature name="AdMob">
<param name="ios-package" value="CDVAdMob" />
</feature>
</config-file>
<header-file src="src/ios/CDVAdMob.h" />
<source-file src="src/ios/CDVAdMob.m" />
</platform>
<!-- Windows Phone 8 -->
<platform name="wp8">
<dependency id="com.google.admobsdk-wp" version=">=6.5.13"/>
<config-file target="config.xml" parent="/*">
<feature name="AdMob">
<param name="wp-package" value="AdMob"/>
</feature>
</config-file>
<source-file src="src/wp8/AdMob.cs" />
</platform>
</plugin>