forked from cranberrygame/cordova-plugin-ad-vungle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·115 lines (98 loc) · 4.88 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-ad-vungle"
version="1.0.58">
<name>Cordova Vungle plugin</name>
<description>Show vungle rewarded video ad</description>
<author>Sang Ki Kwon (Cranberrygame)</author>
<license>MIT</license>
<keywords>cordova,plugin,ad,video,vungle,monetisation</keywords>
<repo>https://github.com/cranberrygame/cordova-plugin-ad-vungle</repo>
<issue>https://github.com/cranberrygame/cordova-plugin-ad-vungle/issues</issue>
<engines>
<engine name="cordova" version=">=4.0.2" />
</engines>
<js-module src="www/vungle.js">
<clobbers target="window.vungle" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Vungle">
<param name="android-package" value="com.cranberrygame.cordova.plugin.ad.vungle.Vungle" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<activity
android:name="com.vungle.publisher.FullScreenAdActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
<service android:name="com.vungle.publisher.VungleService" android:exported="false"/>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<!-- cranberrygame start: com.google.playservices -->
<!--
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
</config-file>
-->
<!-- cranberrygame end -->
<source-file src="src/android/Vungle.java" target-dir="src/com/cranberrygame/cordova/plugin/ad/vungle" />
<source-file src="src/android/dagger-1.2.2.jar" target-dir="libs" />
<source-file src="src/android/javax.inject-1.jar" target-dir="libs" />
<source-file src="src/android/nineoldandroids-2.4.0.jar" target-dir="libs" />
<source-file src="src/android/vungle-publisher-adaptive-id-3.3.0.jar" target-dir="libs" />
<!-- cranberrygame start: com.google.playservices -->
<!--
<source-file src="src/android/google-play-services.jar" target-dir="libs" />
<source-file src="src/android/version.xml" target-dir="res/values" />
-->
<!-- cranberrygame end -->
<!--
<dependency id="com.google.playservices" url="https://github.com/MobileChromeApps/google-play-services" commit="00f511a8ce332d4586f067240460bfe978ace2ae" />
<dependency id="[email protected]" />
<dependency id="[email protected]" />
<framework src="com.google.android.gms:play-services-gcm:7.5.0" />
<framework src="com.android.support:support-v4:[21,22)" />
<dependency id="cordova-plugin-googleplayservices" />
<dependency id="cordova-plugin-android-support-v4" />
-->
<framework src="com.android.support:support-v4:+" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Vungle">
<param name="ios-package" value="Vungle" />
</feature>
</config-file>
<header-file src="src/ios/Vungle.h" />
<source-file src="src/ios/Vungle.m" />
<!--framework src="src/ios/VungleSDK.embeddedframework" custom="true" /-->
<framework src="src/ios/VungleSDK.embeddedframework/VungleSDK.framework" custom="true" />
<resource-file src="src/ios/VungleSDK.embeddedframework/Resources/__vungle.db" />
<resource-file src="src/ios/VungleSDK.embeddedframework/Resources/vg_close.png" />
<resource-file src="src/ios/VungleSDK.embeddedframework/Resources/vg_cta.png" />
<resource-file src="src/ios/VungleSDK.embeddedframework/Resources/vg_mute_off.png" />
<resource-file src="src/ios/VungleSDK.embeddedframework/Resources/vg_mute_on.png" />
<resource-file src="src/ios/VungleSDK.embeddedframework/Resources/vg_timer.png" />
<framework src="AdSupport.framework" />
<framework src="AudioToolbox.framework" />
<framework src="AVFoundation.framework" />
<framework src="CFNetwork.framework" />
<framework src="CoreGraphics.framework" />
<framework src="CoreMedia.framework" />
<framework src="Foundation.framework" />
<framework src="libz.dylib" />
<framework src="libsqlite3.dylib" />
<framework src="MediaPlayer.framework" />
<framework src="QuartzCore.framework" />
<framework src="StoreKit.framework" />
<framework src="SystemConfiguration.framework" />
<framework src="UIKit.framework" />
</platform>
</plugin>