-
Notifications
You must be signed in to change notification settings - Fork 50
/
plugin.xml
74 lines (73 loc) · 3.81 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
<?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="admob"
version="5.5.0">
<name>Admob Plugin</name>
<keywords>ad,admob,google,google-play-service,iad,flurry,device,adwhirl,xdk,jquery,intel appframework,jqmob,cordova,phonegap,ads,html5,js</keywords>
<description>
Google AdMob plugin for Cordova, Phonegap and Intel XDK ,support ios and android,support admob v1 and admob v2 ,Monetize your app with one javascript line.simple and easy to use api.build on admob ios 7.6 and admob android sdk 8
project home:https://github.com/admob-google/admob-cordova<br/>
</description>
<license>Apache 2.0 License</license>
<repo>https://github.com/admob-google/admob-cordova</repo>
<issue>https://github.com/admob-google/admob-cordova/issues</issue>
<engines>
<engine name="cordova" version=">=3.0" />
</engines>
<js-module src="www/admob.js" name="admob">
<clobbers target="window.admob"/>
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="admob" >
<param name="android-package" value="com.admob.cordova.plugin.AdmobAdPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
</config-file>
<source-file src="src/android/libs/admobadplugin.jar" target-dir="libs/"/>
<source-file src="src/android/libs/play-services-ads-9.4.0.jar" target-dir="libs/"/>
<source-file src="src/android/libs/play-services-ads-lite-9.4.0.jar" target-dir="libs/"/>
<source-file src="src/android/libs/play-services-base-9.4.0.jar" target-dir="libs/"/>
<source-file src="src/android/libs/play-services-basement-9.4.0.jar" target-dir="libs/"/>
<resource-file src="src/android/res" target="res/" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="admob">
<param name="ios-package" value="AdmobAdPlugin"/>
</feature>
</config-file>
<source-file src="src/ios/AdmobAdPlugin.m"/>
<header-file src="src/ios/AdmobAdPlugin.h"/>
<framework src="src/ios/AdmobAPI.framework" custom="true"/>
<framework src="EventKit.framework"/>
<framework src="EventKitUI.framework"/>
<framework src="StoreKit.framework"/>
<framework src="AdSupport.framework"/>
<framework src="MessageUI.framework"/>
<framework src="AVFoundation.framework"/>
<framework src="Foundation.framework"/>
<framework src="UIKit.framework"/>
<framework src="CoreGraphics.framework"/>
<framework src="SystemConfiguration.framework"/>
<framework src="AudioToolbox.framework"/>
<framework src="MediaPlayer.framework"/>
<framework src="GLKit.framework"/>
<framework src="SafariServices.framework"/>
<framework src="CoreMotion.framework"/>
</platform>
</plugin>