<?xml version="1.0" encoding="UTF-8"?>

<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
           id="cordova-plugin-ad-appodeal"
      version="1.0.58"> 
	  
    <name>Cordova Appodeal plugin</name>
    <description>Show appodeal banner ad, interstitial ad and rewarded video ad.</description>
    <author>Sang Ki Kwon (Cranberrygame)</author>		
    <license>MIT</license>
    <keywords>cordova,plugin,ad,appodeal,monetisation</keywords>
    <repo>https://github.com/cranberrygame/cordova-plugin-ad-appodeal</repo>
    <issue>https://github.com/cranberrygame/cordova-plugin-ad-appodeal/issues</issue> 	
	<engines>
	    <engine name="cordova" version=">=3.0.0" />
	</engines>	
		
    <js-module src="www/appodeal.js" name="appodeal">
        <clobbers target="window.appodeal" />
    </js-module>

    <!-- android -->	
    <platform name="android">
        <config-file target="res/xml/config.xml" parent="/*">
            <feature name="AppodealPlugin" >
                <param name="android-package" value="com.cranberrygame.cordova.plugin.ad.appodeal.AppodealPlugin"/>
            </feature>
        </config-file>
        
        <config-file target="AndroidManifest.xml" parent="/manifest">
            <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
			<uses-permission android:name="android.permission.INTERNET" />
			<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
			<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
        </config-file>
		
		<config-file target="AndroidManifest.xml" parent="/manifest/application">
			
			<activity android:name="com.appodeal.ads.InterstitialActivity"
				android:configChanges="orientation|screenSize"
				android:theme="@android:style/Theme.Translucent.NoTitleBar" />
			<activity android:name="com.appodeal.ads.VideoActivity"
				android:configChanges="orientation|screenSize"
				android:theme="@android:style/Theme.Translucent.NoTitleBar" />
			<activity android:name="com.appodeal.ads.LoaderActivity"
				android:configChanges="orientation|screenSize"
				android:theme="@android:style/Theme.Translucent.NoTitleBar" />

			<activity android:name="com.chartboost.sdk.CBImpressionActivity"
				android:theme="@android:style/Theme.Translucent"
				android:excludeFromRecents="true" />

			<activity android:name="com.applovin.adview.AppLovinInterstitialActivity"
				android:theme="@android:style/Theme.Translucent" />

<!--
			<activity android:name="com.mopub.mobileads.MoPubActivity"
				android:configChanges="keyboardHidden|orientation|screenSize"
				android:theme="@android:style/Theme.Translucent" />
			<activity android:name="com.mopub.common.MoPubBrowser"
				android:configChanges="keyboardHidden|orientation|screenSize" />
			<activity android:name="com.mopub.mobileads.MraidActivity"
				android:configChanges="keyboardHidden|orientation|screenSize" />
			<activity android:name="com.mopub.mobileads.MraidVideoPlayerActivity"
				android:configChanges="keyboardHidden|orientation|screenSize" />
-->

			<activity android:name="org.nexage.sourcekit.mraid.MRAIDBrowser"
				android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
				android:theme="@android:style/Theme.Translucent" />

			<activity android:name="com.amazon.device.ads.AdActivity" android:configChanges="keyboardHidden|orientation|screenSize"/>

<!--
			<activity android:name="com.unity3d.ads.android.view.UnityAdsFullscreenActivity"
				android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
				android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
				android:hardwareAccelerated="true" />
-->

			<activity android:name="com.supersonicads.sdk.controller.ControllerActivity"
				android:configChanges="orientation|screenSize"
				android:hardwareAccelerated="true" />
		    <activity android:name="com.supersonicads.sdk.controller.InterstitialActivity"
				android:configChanges="orientation|screenSize"
				android:hardwareAccelerated="true"
				android:theme="@android:style/Theme.Translucent" />
		    <activity android:name="com.supersonicads.sdk.controller.OpenUrlActivity"
				android:configChanges="orientation|screenSize"
				android:hardwareAccelerated="true"/>
			
        </config-file>
        		
        <source-file src="src/android/AppodealPlugin.java" target-dir="src/com/cranberrygame/cordova/plugin/ad/appodeal" />
		
        <!--source-file src="src/android/appodeal-1.12.2.jar" target-dir="libs" /-->
        <source-file src="src/android/appodeal-1.12.2_cranberrygame_remove_com_mopub.jar" target-dir="libs" />
		<source-file src="src/android/applovin-sdk-5.4.3.jar" target-dir="libs" />
		<!--source-file src="src/android/chartboost-5.2.0.jar" target-dir="libs" /--><!-- build error when complied with chartboost plugin -->
		<dependency id="cordova-plugin-ad-chartboost" url="https://github.com/cranberrygame/cordova-plugin-ad-chartboost" />
		<source-file src="src/android/supersonic-sdk-5.14.jar" target-dir="libs" />
		<!--source-file src="src/android/unity-ads-1.3.12.jar" target-dir="libs" /--><!-- build error when complied with unityads plugin -->
		<dependency id="cordova-plugin-ad-unityads" url="https://github.com/cranberrygame/cordova-plugin-ad-unityads" />
		<dependency id="cordova-plugin-ad-admob" url="https://github.com/cranberrygame/cordova-plugin-ad-admob" />
        <dependency id="cordova-plugin-ad-mopub" url="https://github.com/cranberrygame/cordova-plugin-ad-mopub" />
    </platform>

	<!-- ios -->
	<platform name="ios">
		<config-file target="config.xml" parent="/*">
			<feature name="AppodealPlugin">
				<param name="ios-package" value="AppodealPlugin" />
			</feature>
		</config-file>
				
		<header-file src="src/ios/AppodealPlugin.h" />
		<source-file src="src/ios/AppodealPlugin.m" />
		
        <framework src="AdSupport.framework" />
        <framework src="AVFoundation.framework" />
        <framework src="AudioToolbox.framework" />
        <framework src="CoreTelephony.framework" />
        <framework src="CoreGraphics.framework" />
        <framework src="EventKit.framework" />
        <framework src="EventKitUI.framework" />
        <framework src="MessageUI.framework" />
        <framework src="StoreKit.framework" />
        <framework src="SystemConfiguration.framework" />
        <framework src="CoreLocation.framework" />
        <framework src="UIKit.framework" />
        <framework src="CoreMedia.framework" />
        <framework src="CoreMotion.framework" />
        <framework src="MediaPlayer.framework" />
        <framework src="QuartzCore.framework" />
        <framework src="CoreImage.framework" />
        <framework src="CoreFoundation.framework" />
        <framework src="Social.framework" />
        <framework src="WebKit.framework" />
        <framework src="CFNetwork.framework" />
        <framework src="libz.dylib" />
        <framework src="libsqlite3.dylib" />
        <framework src="libxml2.dylib" />		
		<framework src="src/ios/AppodealAds.framework" custom="true" />
        <!--framework src="src/ios/AdNetworks/AdColony.framework" custom="true" /-->
		<dependency id="cordova-plugin-ad-adcolony" url="https://github.com/cranberrygame/cordova-plugin-ad-adcolony" />
        <framework src="src/ios/AdNetworks/AerServSDK.framework" custom="true" />
		<framework src="src/ios/AdNetworks/AmazonAd.framework" custom="true" />
		<!--framework src="src/ios/AdNetworks/Chartboost.framework" custom="true" /-->
		<dependency id="cordova-plugin-ad-chartboost" url="https://github.com/cranberrygame/cordova-plugin-ad-chartboost" />
        <!--framework src="src/ios/AdNetworks/GoogleMobileAds.framework" custom="true" /-->
		<dependency id="cordova-plugin-ad-admob" url="https://github.com/cranberrygame/cordova-plugin-ad-admob" />
<!--
		<header-file src="src/ios/AdNetworks/MoPubSDK/MoPub.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/MoPub.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MoPub-Bridging-Header.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MPAdConversionTracker.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/MPAdConversionTracker.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MPAdView.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/MPAdView.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MPBannerCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/MPBannerCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MPBannerCustomEventDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MPConstants.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/MPConstants.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MPInterstitialAdController.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/MPInterstitialAdController.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MPInterstitialCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/MPInterstitialCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/MPInterstitialCustomEventDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MPCoreInstanceProvider.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MPCoreInstanceProvider.m" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MPInstanceProvider.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MPInstanceProvider.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPBannerAdManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPBannerAdManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPBannerAdManagerDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPBannerCustomEventAdapter.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPBannerCustomEventAdapter.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPBaseBannerAdapter.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPBaseBannerAdapter.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPLegacyBannerCustomEventAdapter.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPLegacyBannerCustomEventAdapter.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Banners/MPPrivateBannerCustomEventDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPActivityViewControllerHelper.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPActivityViewControllerHelper.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPActivityViewControllerHelper+TweetShare.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPActivityViewControllerHelper+TweetShare.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdBrowserController.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdBrowserController.m" />
		<resource-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdBrowserController.xib" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdConfiguration.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdConfiguration.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdDestinationDisplayAgent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdDestinationDisplayAgent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdServerCommunicator.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdServerCommunicator.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdServerURLBuilder.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAdServerURLBuilder.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAPIEndpoints.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPAPIEndpoints.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPClosableView.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPClosableView.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPFacebookKeywordProvider.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPFacebookKeywordProvider.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPKeywordProvider.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPLastResortDelegate.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPLastResortDelegate.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPLastResortDelegate+EventKit.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPLastResortDelegate+EventKit.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPProgressOverlayView.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPProgressOverlayView.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPURLResolver.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/MPURLResolver.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/AdAlerts/MPAdAlertGestureRecognizer.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/AdAlerts/MPAdAlertGestureRecognizer.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/AdAlerts/MPAdAlertManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Common/AdAlerts/MPAdAlertManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPLogEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPLogEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPLogEventCommunicator.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPLogEventCommunicator.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPLogEventRecorder.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPLogEventRecorder.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPNetworkManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPNetworkManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPQRunLoopOperation.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPQRunLoopOperation.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPRetryingHTTPOperation.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Event Logging/MPRetryingHTTPOperation.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPAdWebView.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPAdWebView.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPAdWebViewAgent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPAdWebViewAgent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPHTMLBannerCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPHTMLBannerCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPHTMLInterstitialCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPHTMLInterstitialCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPHTMLInterstitialViewController.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/HTML/MPHTMLInterstitialViewController.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPBaseInterstitialAdapter.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPBaseInterstitialAdapter.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPInterstitialAdManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPInterstitialAdManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPInterstitialAdManagerDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPInterstitialCustomEventAdapter.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPInterstitialCustomEventAdapter.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPInterstitialViewController.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPInterstitialViewController.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPLegacyInterstitialCustomEventAdapter.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPLegacyInterstitialCustomEventAdapter.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Interstitials/MPPrivateInterstitialCustomEventDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MPForceableOrientationProtocol.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MPMRAIDBannerCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MPMRAIDBannerCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MPMRAIDInterstitialCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MPMRAIDInterstitialCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MPMRAIDInterstitialViewController.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MPMRAIDInterstitialViewController.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRBridge.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRBridge.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRBundleManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRBundleManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRCalendarManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRCalendarManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRCommand.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRCommand.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRConstants.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRConstants.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRController.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRController.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRError.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRError.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRExpandModalViewController.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRExpandModalViewController.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRImageDownloader.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRImageDownloader.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRNativeCommandHandler.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRNativeCommandHandler.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRPictureManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRPictureManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRProperty.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRProperty.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRVideoPlayerManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/MRAID/MRVideoPlayerManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPAnalyticsTracker.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPAnalyticsTracker.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPError.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPError.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPGeolocationProvider.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPGeolocationProvider.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPGlobal.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPGlobal.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPIdentityProvider.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPIdentityProvider.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPInternalUtils.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPInternalUtils.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPLogging.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPLogging.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPLogProvider.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPLogProvider.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPReachability.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPReachability.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPSessionTracker.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPSessionTracker.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPStoreKitProvider.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPStoreKitProvider.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPTimer.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPTimer.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPUserInteractionGestureRecognizer.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/MPUserInteractionGestureRecognizer.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/NSHTTPURLResponse+MPAdditions.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/NSHTTPURLResponse+MPAdditions.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/NSJSONSerialization+MPAdditions.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/NSJSONSerialization+MPAdditions.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/NSURL+MPAdditions.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/NSURL+MPAdditions.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/UIViewController+MPAdditions.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/UIViewController+MPAdditions.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/UIWebView+MPAdditions.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Internal/Utility/Categories/UIWebView+MPAdditions.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPAdPositioning.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPAdPositioning.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPClientAdPositioning.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPClientAdPositioning.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPCollectionViewAdPlacer.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPCollectionViewAdPlacer.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAd.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAd.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdAdapter.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdConstants.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdConstants.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdData.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdData.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdError.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdError.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdRendering.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdRequest.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdRequest.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdRequestTargeting.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdRequestTargeting.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdSource.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdSource.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeAdSourceDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPNativeCustomEventDelegate.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPServerAdPositioning.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPServerAdPositioning.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPStreamAdPlacementData.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPStreamAdPlacementData.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPStreamAdPlacer.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPStreamAdPlacer.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPTableViewAdManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPTableViewAdManager.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPTableViewAdPlacer.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/MPTableViewAdPlacer.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPAdPlacerInvocation.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPAdPlacerInvocation.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPDiskLRUCache.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPDiskLRUCache.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPImageDownloadQueue.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPImageDownloadQueue.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPMoPubNativeAdAdapter.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPMoPubNativeAdAdapter.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPMoPubNativeCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPMoPubNativeCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativeAd+Internal.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativeAdSourceQueue.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativeAdSourceQueue.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativeAdUtils.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativeAdUtils.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativeCache.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativeCache.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativePositionResponseDeserializer.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativePositionResponseDeserializer.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativePositionSource.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPNativePositionSource.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPTableViewCellImpressionTracker.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/MPTableViewCellImpressionTracker.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/Categories/MPNativeAdRequest+MPNativeAdSource.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/Categories/UIView+MPNativeAd.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/Native Ads/Internal/Categories/UIView+MPNativeAd.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPMediationSettingsProtocol.h" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPRewardedVideo.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPRewardedVideo.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPRewardedVideoCustomEvent.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPRewardedVideoCustomEvent.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPRewardedVideoError.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPRewardedVideoError.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPRewardedVideoReward.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/MPRewardedVideoReward.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/Internal/MPRewardedVideoAdapter.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/Internal/MPRewardedVideoAdapter.m" />
		<header-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/Internal/MPRewardedVideoAdManager.h" />
		<source-file src="src/ios/AdNetworks/MoPubSDK/RewardedVideo/Internal/MPRewardedVideoAdManager.m" />
		<resource-file src="src/ios/AdNetworks/MoPubSDK/Resources/MRAID.bundle" />
		<resource-file src="src/ios/AdNetworks/MoPubSDK/Resources/MPCloseButtonX.png" />
		<resource-file src="src/ios/AdNetworks/MoPubSDK/Resources/MPCloseButtonX@2x.png" />
		<resource-file src="src/ios/AdNetworks/MoPubSDK/Resources/MPCloseButtonX@3x.png" />
-->
<!--		
        <framework src="src/ios/AdNetworks/MoPub.framework" custom="true"/>
        <resource-file src="src/ios/AdNetworks/MoPub.framework/Resources/MPCloseButtonX.png"/>
        <resource-file src="src/ios/AdNetworks/MoPub.framework/Resources/MPCloseButtonX@2x.png"/>
        <resource-file src="src/ios/AdNetworks/MoPub.framework/Resources/MRAID.bundle"/>
-->
        <dependency id="cordova-plugin-ad-mopub" url="https://github.com/cranberrygame/cordova-plugin-ad-mopub" />
<!--
        <framework src="src/ios/AdNetworks/UnityAds.framework" custom="true" />
        <resource-file src="src/ios/AdNetworks/UnityAds.bundle" />		
-->		
		<dependency id="cordova-plugin-ad-unityads" url="https://github.com/cranberrygame/cordova-plugin-ad-unityads" />		
		<!--framework src="src/ios/AdNetworks/VungleSDK.embeddedframework" custom="true" /--><!--build error-->
<!--		
		<framework src="src/ios/AdNetworks/VungleSDK.embeddedframework/VungleSDK.framework" custom="true" />
		<resource-file src="src/ios/AdNetworks/VungleSDK.embeddedframework/Resources/__vungle.db" />
		<resource-file src="src/ios/AdNetworks/VungleSDK.embeddedframework/Resources/vg_close.png" />
		<resource-file src="src/ios/AdNetworks/VungleSDK.embeddedframework/Resources/vg_cta.png" />
		<resource-file src="src/ios/AdNetworks/VungleSDK.embeddedframework/Resources/vg_mute_off.png" />
		<resource-file src="src/ios/AdNetworks/VungleSDK.embeddedframework/Resources/vg_mute_on.png" />
		<resource-file src="src/ios/AdNetworks/VungleSDK.embeddedframework/Resources/vg_timer.png" />
-->
<!--
		<framework src="src/ios/AdNetworks/VungleSDK/VungleSDK.framework" custom="true" />
		<resource-file src="src/ios/AdNetworks/VungleSDK/Resources/__vungle.db"/>
		<resource-file src="src/ios/AdNetworks/VungleSDK/Resources/vg_close.png"/>
		<resource-file src="src/ios/AdNetworks/VungleSDK/Resources/vg_cta.png"/>
		<resource-file src="src/ios/AdNetworks/VungleSDK/Resources/vg_mute_off.png"/>
		<resource-file src="src/ios/AdNetworks/VungleSDK/Resources/vg_mute_on.png"/>
		<resource-file src="src/ios/AdNetworks/VungleSDK/Resources/vg_timer.png"/>
-->		
		<dependency id="cordova-plugin-ad-vungle" url="https://github.com/cranberrygame/cordova-plugin-ad-vungle" />		
	</platform>
</plugin>