-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.xml
More file actions
58 lines (42 loc) · 1.8 KB
/
plugin.xml
File metadata and controls
58 lines (42 loc) · 1.8 KB
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"
id="cordova-plugin-google-firebase-admob"
version="0.5.1">
<name>Firebase AdMob Plugin</name>
<description>Cordova plugin for Google Firebase AdMob</description>
<author>Joshua McFarland</author>
<license>MIT</license>
<keywords>cordova,google,firebase,admob</keywords>
<engines>
<engine name="cordova" version=">=6.4.0" />
<engine name="cordova-android" version=">=6.3.0" />
<engine name="cordova-ios" version=">=4.3.0" />
</engines>
<js-module src="www/firebase-admob.js" name="FirebaseAdmobPlugin">
<clobbers target="plugins.firebase.admob" />
</js-module>
<dependency id="cordova-plugin-google-firebase" version="0.5.1"/>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="FirebaseAdmobPlugin" >
<param name="android-package" value="com.jernung.plugins.firebase.admob.FirebaseAdmobPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.INTERNET" />
</config-file>
<framework src="com.google.firebase:firebase-ads:15.0.0" />
<source-file src="src/android/FirebaseAdmobPlugin.java" target-dir="src/com/jernung/plugins/firebase/admob" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="FirebaseAdmobPlugin">
<param name="ios-package" value="FirebaseAdmobPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<framework src="Firebase/AdMob" type="podspec" spec="~> 4.8.1"/>
<source-file src="src/ios/FirebaseAdmobPlugin.swift" />
</platform>
</plugin>