-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
783aab0
commit cca06b5
Showing
142 changed files
with
2,216 additions
and
198 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// | ||
// GDTNativeExpressAd.h | ||
// GDTMobApp | ||
// | ||
// Created by michaelxing on 2017/4/17. | ||
// Copyright © 2017年 Tencent. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <UIKit/UIKit.h> | ||
|
||
@class GDTNativeExpressAdView; | ||
@class GDTNativeExpressAd; | ||
|
||
@protocol GDTNativeExpressAdDelegete <NSObject> | ||
|
||
@optional | ||
/** | ||
* 拉取原生模板广告成功 | ||
*/ | ||
- (void)nativeExpressAdSuccessToLoad:(GDTNativeExpressAd *)nativeExpressAd views:(NSArray<__kindof GDTNativeExpressAdView *> *)views; | ||
|
||
/** | ||
* 拉取原生模板广告失败 | ||
*/ | ||
- (void)nativeExpressAdFailToLoad:(GDTNativeExpressAd *)nativeExpressAd error:(NSError *)error; | ||
|
||
/** | ||
* 原生模板广告渲染成功 | ||
*/ | ||
- (void) nativeExpressAdViewRenderSuccess:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 原生模板广告渲染失败 | ||
*/ | ||
- (void) nativeExpressAdViewRenderFail:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 原生模板广告曝光回调 | ||
*/ | ||
- (void)nativeExpressAdViewExposure:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 原生模板广告点击回调 | ||
*/ | ||
- (void)nativeExpressAdViewClicked:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 原生模板广告被关闭 | ||
*/ | ||
- (void)nativeExpressAdViewClosed:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 点击原生模板广告以后即将弹出全屏广告页 | ||
*/ | ||
- (void)nativeExpressAdViewWillPresentScreen:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 点击原生模板广告以后弹出全屏广告页 | ||
*/ | ||
- (void)nativeExpressAdViewDidPresentScreen:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 全屏广告页将要关闭 | ||
*/ | ||
- (void)nativeExpressAdViewWillDissmissScreen:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 全屏广告页关闭 | ||
*/ | ||
- (void)nativeExpressAdViewDidDissmissScreen:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
/** | ||
* 原生模板广告点击之后应用进入后台时回调 | ||
*/ | ||
- (void)nativeExpressAdViewApplicationWillEnterBackground:(GDTNativeExpressAdView *)nativeExpressAdView; | ||
|
||
@end | ||
|
||
@interface GDTNativeExpressAd : NSObject | ||
|
||
/** | ||
* 委托对象 | ||
*/ | ||
@property (nonatomic, weak) id<GDTNativeExpressAdDelegete> delegate; | ||
|
||
/** | ||
* 构造方法 | ||
* 详解:appkey是应用id, placementId是广告位id, adSize是广告展示的宽高(具体参看联盟广告位配置) | ||
*/ | ||
-(instancetype)initWithAppkey:(NSString *)appkey placementId:(NSString *)placementId adSize:(CGSize)size; | ||
|
||
- (void)loadAd:(int)count; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// | ||
// GDTNativeExpressAdView.h | ||
// GDTMobApp | ||
// | ||
// Created by michaelxing on 2017/4/14. | ||
// Copyright © 2017年 Tencent. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
|
||
@interface GDTNativeExpressAdView : UIView | ||
|
||
/** | ||
* 是否渲染完毕 | ||
*/ | ||
@property (nonatomic, assign) BOOL isReady; | ||
|
||
/* | ||
* viewControllerForPresentingModalView | ||
* 详解:[必选]开发者需传入用来弹出目标页的ViewController,一般为当前ViewController | ||
*/ | ||
@property (nonatomic, weak) UIViewController *controller; | ||
|
||
|
||
/** | ||
*[必选] | ||
*原生模板广告渲染 | ||
*/ | ||
- (void)render; | ||
|
||
@end |
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Modules/module.modulemap
100755 → 100644
Empty file.
Binary file modified
BIN
+99.7 KB
(100%)
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/GoogleMobileAds
100755 → 100644
Binary file not shown.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/DFPBannerView.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/DFPBannerViewOptions.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedAd.h
100755 → 100644
Empty file.
Empty file modified
0
...Advert/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedBannerViewDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
...vert/GoogleMobileAds.framework/Versions/A/Headers/DFPCustomRenderedInterstitialDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/DFPInterstitial.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/DFPRequest.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAdChoicesView.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAdDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAdLoader.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAdLoaderAdTypes.h
100755 → 100644
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAdNetworkExtras.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAdReward.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAdSize.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAdSizeDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAppEventDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAudioVideoManager.h
100755 → 100644
Empty file.
Empty file modified
0
...ial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADAudioVideoManagerDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADBannerView.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADBannerViewDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCorrelator.h
100755 → 100644
Empty file.
Empty file modified
0
...ial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCorrelatorAdLoaderOptions.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventBanner.h
100755 → 100644
Empty file.
Empty file modified
0
...ial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventBannerDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventExtras.h
100755 → 100644
Empty file.
Empty file modified
0
...rsial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventInterstitial.h
100755 → 100644
Empty file.
Empty file modified
0
...XAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventInterstitialDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
...niversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventNativeAd.h
100755 → 100644
Empty file.
Empty file modified
0
...l/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventNativeAdDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
...versial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventParameters.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADCustomEventRequest.h
100755 → 100644
Empty file.
Empty file modified
0
...al/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADDebugOptionsViewController.h
100755 → 100644
Empty file.
Empty file modified
0
...al/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADDynamicHeightSearchRequest.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADExtras.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchase.h
100755 → 100644
Empty file.
Empty file modified
0
...versial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADInAppPurchaseDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitial.h
100755 → 100644
Empty file.
Empty file modified
0
...iversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADInterstitialDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADMediaView.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAd.h
100755 → 100644
Empty file.
Empty file modified
0
...sial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAdDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
...vert/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAdNotificationSource.h
100755 → 100644
Empty file.
Empty file modified
0
...al/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeAppInstallAd.h
100755 → 100644
Empty file.
Empty file modified
0
...rsial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADMediatedNativeContentAd.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADMobileAds.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAd.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
...rsial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImage+Mediation.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImage.h
100755 → 100644
Empty file.
Empty file modified
0
.../FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdImageAdLoaderOptions.h
100755 → 100644
Empty file.
Empty file modified
0
...versial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAdViewAdOptions.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAppInstallAd.h
100755 → 100644
Empty file.
Empty file modified
0
...al/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeAppInstallAdAssetIDs.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeContentAd.h
100755 → 100644
Empty file.
Empty file modified
0
...rsial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeContentAdAssetIDs.h
100755 → 100644
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
...niversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeExpressAdView.h
100755 → 100644
Empty file.
Empty file modified
0
...l/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADNativeExpressAdViewDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADRequest.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADRequestError.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADRewardBasedVideoAd.h
100755 → 100644
Empty file.
Empty file modified
0
...al/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADRewardBasedVideoAdDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADSearchBannerView.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADSearchRequest.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADVideoController.h
100755 → 100644
Empty file.
Empty file modified
0
...rsial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADVideoControllerDelegate.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GADVideoOptions.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GoogleMobileAds.h
100755 → 100644
Empty file.
Empty file modified
0
...niversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/GoogleMobileAdsDefines.h
100755 → 100644
Empty file.
Empty file modified
0
...ert/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMAdNetworkAdapterProtocol.h
100755 → 100644
Empty file.
Empty file modified
0
...t/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMAdNetworkConnectorProtocol.h
100755 → 100644
Empty file.
Empty file modified
0
FCXUniversial/FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMEnums.h
100755 → 100644
Empty file.
Empty file modified
0
...Ads.framework/Versions/A/Headers/Mediation/GADMRewardBasedVideoAdNetworkAdapterProtocol.h
100755 → 100644
Empty file.
Empty file modified
0
...s.framework/Versions/A/Headers/Mediation/GADMRewardBasedVideoAdNetworkConnectorProtocol.h
100755 → 100644
Empty file.
Empty file modified
0
.../FCXAdvert/GoogleMobileAds.framework/Versions/A/Headers/Mediation/GADMediationAdRequest.h
100755 → 100644
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.