forked from cranberrygame/cordova-plugin-ad-admob-mobfox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
executable file
·67 lines (61 loc) · 3.19 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
<?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="cordova-plugin-ad-admob-mobfox"
version="1.0.23">
<name>Cordova Admob-MobFox Mediation Plugin</name>
<description>Cordova Admob-MobFox Mediation Plugin</description>
<author>Sang Ki Kwon (Cranberrygame)</author>
<license>MIT</license>
<keywords>cordova,plugin,ad,admob,monetisation,mobfox,mediation</keywords>
<repo>https://github.com/cranberrygame/cordova-plugin-ad-admob</repo>
<issue>https://github.com/cranberrygame/cordova-plugin-ad-admob/issues</issue>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- android -->
<platform name="android">
<source-file src="src/android/mobfoxmediationadapter.jar" target-dir="libs" />
<!-- dependency -->
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity android:name="com.adsdk.sdk.banner.InAppWebView"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
<activity android:name="com.adsdk.sdk.video.RichMediaActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:hardwareAccelerated="false" />
<activity android:name="com.adsdk.sdk.mraid.MraidBrowser"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
</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_FINE_LOCATION" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
</config-file>
<source-file src="src/android/AdSdk_6.0.8.jar" target-dir="libs" />
<source-file src="src/android/simple-xml-2.7.1.jar" target-dir="libs" />
</platform>
<!-- ios -->
<platform name="ios">
<!-- dependency -->
<source-file src="src/ios/libAdapterSDKMobFox.a" framework="true" />
<resource-file src="src/ios/MRAID.bundle" />
<framework src="AudioToolbox.framework"/>
<framework src="AVFoundation.framework"/>
<framework src="iAd.framework"/>
<framework src="StoreKit.framework"/>
<framework src="SystemConfiguration.framework"/>
<framework src="MessageUI.framework"/>
<framework src="CoreTelephony.framework"/>
<framework src="EventKit.framework"/>
<framework src="EventKitUI.framework"/>
<framework src="AdSupport.framework"/>
<framework src="UIKit.framework"/>
<framework src="CoreLocation.framework"/>
<framework src="MediaPlayer.framework"/>
<framework src="Foundation.framework"/>
<framework src="CoreGraphics.framework"/>
</platform>
<!-- dependency -->
<dependency id="cordova-plugin-ad-admob" url="https://github.com/cranberrygame/cordova-plugin-ad-admob" />
</plugin>