├── Images ├── MTGoogleAdMob_1.gif ├── MTGoogleAdMob_2.gif ├── Step_1_Test_Banner.png ├── Step_2_Test_Interstitial.png ├── Step_3_Live_Banner.png └── Step_4_Live_Interstitial.png ├── Project └── AdMobIntegrationDemo │ ├── AdMobIntegrationDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── devubhamanek.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── devubhamanek.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── AdMobIntegrationDemo.xcscheme │ │ └── xcschememanagement.plist │ ├── AdMobIntegrationDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x-1.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x-1.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ └── Icon-App-60x60@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GoogleAdsMob.swift │ ├── Info.plist │ └── ViewController.swift │ └── GoogleMobileAds.framework │ ├── GoogleMobileAds │ ├── Headers │ ├── Modules │ └── module.modulemap │ └── Versions │ ├── A │ ├── GoogleMobileAds │ └── Headers │ │ ├── DFPBannerView.h │ │ ├── DFPCustomRenderedAd.h │ │ ├── DFPCustomRenderedBannerViewDelegate.h │ │ ├── DFPCustomRenderedInterstitialDelegate.h │ │ ├── DFPInterstitial.h │ │ ├── DFPRequest.h │ │ ├── GADAdChoicesView.h │ │ ├── GADAdDelegate.h │ │ ├── GADAdLoader.h │ │ ├── GADAdLoaderAdTypes.h │ │ ├── GADAdLoaderDelegate.h │ │ ├── GADAdNetworkExtras.h │ │ ├── GADAdReward.h │ │ ├── GADAdSize.h │ │ ├── GADAdSizeDelegate.h │ │ ├── GADAppEventDelegate.h │ │ ├── GADBannerView.h │ │ ├── GADBannerViewDelegate.h │ │ ├── GADCorrelator.h │ │ ├── GADCorrelatorAdLoaderOptions.h │ │ ├── GADCustomEventBanner.h │ │ ├── GADCustomEventBannerDelegate.h │ │ ├── GADCustomEventExtras.h │ │ ├── GADCustomEventInterstitial.h │ │ ├── GADCustomEventInterstitialDelegate.h │ │ ├── GADCustomEventNativeAd.h │ │ ├── GADCustomEventNativeAdDelegate.h │ │ ├── GADCustomEventParameters.h │ │ ├── GADCustomEventRequest.h │ │ ├── GADDebugOptionsViewController.h │ │ ├── GADDynamicHeightSearchRequest.h │ │ ├── GADExtras.h │ │ ├── GADInAppPurchase.h │ │ ├── GADInAppPurchaseDelegate.h │ │ ├── GADInterstitial.h │ │ ├── GADInterstitialDelegate.h │ │ ├── GADMediaView.h │ │ ├── GADMediatedNativeAd.h │ │ ├── GADMediatedNativeAdDelegate.h │ │ ├── GADMediatedNativeAdNotificationSource.h │ │ ├── GADMediatedNativeAppInstallAd.h │ │ ├── GADMediatedNativeContentAd.h │ │ ├── GADMobileAds.h │ │ ├── GADNativeAd.h │ │ ├── GADNativeAdDelegate.h │ │ ├── GADNativeAdImage+Mediation.h │ │ ├── GADNativeAdImage.h │ │ ├── GADNativeAdImageAdLoaderOptions.h │ │ ├── GADNativeAdViewAdOptions.h │ │ ├── GADNativeAppInstallAd.h │ │ ├── GADNativeContentAd.h │ │ ├── GADNativeCustomTemplateAd.h │ │ ├── GADNativeExpressAdView.h │ │ ├── GADNativeExpressAdViewDelegate.h │ │ ├── GADRequest.h │ │ ├── GADRequestError.h │ │ ├── GADRewardBasedVideoAd.h │ │ ├── GADRewardBasedVideoAdDelegate.h │ │ ├── GADSearchBannerView.h │ │ ├── GADSearchRequest.h │ │ ├── GADVideoController.h │ │ ├── GADVideoControllerDelegate.h │ │ ├── GADVideoOptions.h │ │ ├── GoogleMobileAds.h │ │ ├── GoogleMobileAdsDefines.h │ │ └── Mediation │ │ ├── GADMAdNetworkAdapterProtocol.h │ │ ├── GADMAdNetworkConnectorProtocol.h │ │ ├── GADMEnums.h │ │ ├── GADMRewardBasedVideoAdNetworkAdapterProtocol.h │ │ ├── GADMRewardBasedVideoAdNetworkConnectorProtocol.h │ │ └── GADMediationAdRequest.h │ └── Current └── README.md /Images/MTGoogleAdMob_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Images/MTGoogleAdMob_1.gif -------------------------------------------------------------------------------- /Images/MTGoogleAdMob_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Images/MTGoogleAdMob_2.gif -------------------------------------------------------------------------------- /Images/Step_1_Test_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Images/Step_1_Test_Banner.png -------------------------------------------------------------------------------- /Images/Step_2_Test_Interstitial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Images/Step_2_Test_Interstitial.png -------------------------------------------------------------------------------- /Images/Step_3_Live_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Images/Step_3_Live_Banner.png -------------------------------------------------------------------------------- /Images/Step_4_Live_Interstitial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Images/Step_4_Live_Interstitial.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/project.xcworkspace/xcuserdata/devubhamanek.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/project.xcworkspace/xcuserdata/devubhamanek.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/xcuserdata/devubhamanek.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/xcuserdata/devubhamanek.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/xcuserdata/devubhamanek.xcuserdatad/xcschemes/AdMobIntegrationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/xcuserdata/devubhamanek.xcuserdatad/xcschemes/AdMobIntegrationDemo.xcscheme -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/xcuserdata/devubhamanek.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo.xcodeproj/xcuserdata/devubhamanek.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/GoogleAdsMob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/GoogleAdsMob.swift -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/Info.plist -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/AdMobIntegrationDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/AdMobIntegrationDemo/ViewController.swift -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/GoogleMobileAds: -------------------------------------------------------------------------------- 1 | Versions/Current/GoogleMobileAds -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/GoogleMobileAds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/GoogleMobileAds -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPBannerView.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedBannerViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedBannerViewDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedInterstitialDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedInterstitialDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPInterstitial.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/DFPRequest.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdChoicesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdChoicesView.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdLoader.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdLoaderAdTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdLoaderAdTypes.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdLoaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdLoaderDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdNetworkExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdNetworkExtras.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdReward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdReward.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdSize.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdSizeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAdSizeDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAppEventDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADAppEventDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADBannerView.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADBannerViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADBannerViewDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCorrelator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCorrelator.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCorrelatorAdLoaderOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCorrelatorAdLoaderOptions.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventBanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventBanner.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventBannerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventBannerDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventExtras.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventInterstitial.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventInterstitialDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventInterstitialDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventNativeAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventNativeAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventNativeAdDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventParameters.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventRequest.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADDebugOptionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADDebugOptionsViewController.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADDynamicHeightSearchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADDynamicHeightSearchRequest.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADExtras.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchase.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchaseDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchaseDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitial.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitialDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitialDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediaView.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAdDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAdNotificationSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAdNotificationSource.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAppInstallAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAppInstallAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeContentAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeContentAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMobileAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADMobileAds.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImage+Mediation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImage+Mediation.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImage.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImageAdLoaderOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImageAdLoaderOptions.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdViewAdOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdViewAdOptions.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAppInstallAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAppInstallAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeContentAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeContentAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeCustomTemplateAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeCustomTemplateAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeExpressAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeExpressAdView.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeExpressAdViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADNativeExpressAdViewDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADRequest.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADRequestError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADRequestError.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADRewardBasedVideoAd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADRewardBasedVideoAd.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADRewardBasedVideoAdDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADRewardBasedVideoAdDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADSearchBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADSearchBannerView.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADSearchRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADSearchRequest.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADVideoController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADVideoController.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADVideoControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADVideoControllerDelegate.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADVideoOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GADVideoOptions.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GoogleMobileAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GoogleMobileAds.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GoogleMobileAdsDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/GoogleMobileAdsDefines.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMAdNetworkAdapterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMAdNetworkAdapterProtocol.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMAdNetworkConnectorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMAdNetworkConnectorProtocol.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMEnums.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMRewardBasedVideoAdNetworkAdapterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMRewardBasedVideoAdNetworkAdapterProtocol.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMRewardBasedVideoAdNetworkConnectorProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMRewardBasedVideoAdNetworkConnectorProtocol.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMediationAdRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMediationAdRequest.h -------------------------------------------------------------------------------- /Project/AdMobIntegrationDemo/GoogleMobileAds.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manekdilip/MTGoogleAdMob/HEAD/README.md --------------------------------------------------------------------------------