forked from lycwed/lycwed-cordova-plugin-admob-inmobi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
49 lines (41 loc) · 2.18 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="lycwed-cordova-plugin-admob-inmobi" version="1.0.9"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>lycwed-cordova-plugin-admob-inmobi</name>
<description>Cordova AdMob Mediation Plugin for InMobi</description>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="android">
<framework src="com.inmobi.monetization:inmobi-ads:9.0.2" />
<framework src="com.google.ads.mediation:inmobi:7.3.0.1" />
<framework src="com.squareup.picasso:picasso:2.71828" />
<framework src="com.android.support:recyclerview-v7:28.0.0" />
<framework src="com.android.support:customtabs:28.0.0" />
<config-file parent="/manifest/application" target="AndroidManifest.xml">
<activity android:name="com.inmobi.rendering.InMobiAdActivity"
android:configChanges="keyboardHidden|orientation|keyboard|smallestScreenSize|screenSize|screenLayout"
android:hardwareAccelerated="true"
android:resizeableActivity="false"
android:theme="@android:style/Theme.NoTitleBar" />
<receiver
android:name="com.inmobi.commons.core.utilities.uid.ImIdShareBroadCastReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="com.inmobi.share.id"/>
</intent-filter>
</receiver>
</config-file>
<!-- Prevents compilation error: https://developer.android.com/studio/build/multidex.html -->
<!-- when add additional mediation plugins -->
<dependency id="cordova-plugin-enable-multidex" />
</platform>
<platform name="ios">
<pods-config ios-min-version="9.0" use-frameworks="true" />
<pod id="GoogleMobileAdsMediationInMobi" version="7.0.4.0" />
<!-- Prevents compilation failures when using pod's id with additional mediations plugins -->
<dependency id="cordova-plugin-cocoapod-support" />
</platform>
</plugin>