├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug-report-------.md │ └── feature-request-------.md ├── .gitignore ├── Ads-CN └── Ads-CN.podspec ├── Ads-Global └── Ads-Global.podspec ├── Demo ├── DomesticDemo │ ├── BUADDemo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── BUDemo │ │ ├── App │ │ │ ├── Example │ │ │ │ ├── BUDAdManager.h │ │ │ │ ├── BUDAdManager.m │ │ │ │ ├── WebAd │ │ │ │ │ ├── BUDFeedAdView.h │ │ │ │ │ ├── BUDFeedAdView.m │ │ │ │ │ ├── BUDNativeBannerView.h │ │ │ │ │ ├── BUDNativeBannerView.m │ │ │ │ │ ├── BUDWebViewController.h │ │ │ │ │ └── BUDWebViewController.m │ │ │ │ ├── controller │ │ │ │ │ ├── BUDBannerAdListViewController.h │ │ │ │ │ ├── BUDBannerAdListViewController.m │ │ │ │ │ ├── BUDBaseExampleViewController.h │ │ │ │ │ ├── BUDBaseExampleViewController.m │ │ │ │ │ ├── BUDBiddingSplashViewController.h │ │ │ │ │ ├── BUDBiddingSplashViewController.m │ │ │ │ │ ├── BUDCustomDislikeToolsController.h │ │ │ │ │ ├── BUDCustomDislikeToolsController.m │ │ │ │ │ ├── BUDCustomDislikeViewController.h │ │ │ │ │ ├── BUDCustomDislikeViewController.m │ │ │ │ │ ├── BUDCustomVideoPlayerViewController.h │ │ │ │ │ ├── BUDCustomVideoPlayerViewController.m │ │ │ │ │ ├── BUDDrawAdListViewController.h │ │ │ │ │ ├── BUDDrawAdListViewController.m │ │ │ │ │ ├── BUDDrawVideoViewController.h │ │ │ │ │ ├── BUDDrawVideoViewController.m │ │ │ │ │ ├── BUDECMallViewController.h │ │ │ │ │ ├── BUDECMallViewController.m │ │ │ │ │ ├── BUDExpressBannerViewController.h │ │ │ │ │ ├── BUDExpressBannerViewController.m │ │ │ │ │ ├── BUDExpressDrawViewController.h │ │ │ │ │ ├── BUDExpressDrawViewController.m │ │ │ │ │ ├── BUDExpressFeedViewController.h │ │ │ │ │ ├── BUDExpressFeedViewController.m │ │ │ │ │ ├── BUDExpressFullScreenVideoViewController.h │ │ │ │ │ ├── BUDExpressFullScreenVideoViewController.m │ │ │ │ │ ├── BUDExpressListBannerViewController.h │ │ │ │ │ ├── BUDExpressListBannerViewController.m │ │ │ │ │ ├── BUDExpressRewardedVideoViewController.h │ │ │ │ │ ├── BUDExpressRewardedVideoViewController.m │ │ │ │ │ ├── BUDExpressViewController.h │ │ │ │ │ ├── BUDExpressViewController.m │ │ │ │ │ ├── BUDFeedAdListViewController.h │ │ │ │ │ ├── BUDFeedAdListViewController.m │ │ │ │ │ ├── BUDFeedViewController.h │ │ │ │ │ ├── BUDFeedViewController.m │ │ │ │ │ ├── BUDFullScreenVideoAdListViewController.h │ │ │ │ │ ├── BUDFullScreenVideoAdListViewController.m │ │ │ │ │ ├── BUDListViewController.h │ │ │ │ │ ├── BUDListViewController.m │ │ │ │ │ ├── BUDNativeBannerViewController.h │ │ │ │ │ ├── BUDNativeBannerViewController.m │ │ │ │ │ ├── BUDNativeFeedCollectionViewController.h │ │ │ │ │ ├── BUDNativeFeedCollectionViewController.m │ │ │ │ │ ├── BUDPasterBaseViewController.h │ │ │ │ │ ├── BUDPasterBaseViewController.m │ │ │ │ │ ├── BUDPasterCustomPlayerViewController.h │ │ │ │ │ ├── BUDPasterCustomPlayerViewController.m │ │ │ │ │ ├── BUDPasterViewController.h │ │ │ │ │ ├── BUDPasterViewController.m │ │ │ │ │ ├── BUDRewardedAdListViewController.h │ │ │ │ │ ├── BUDRewardedAdListViewController.m │ │ │ │ │ ├── BUDSettingViewController.h │ │ │ │ │ ├── BUDSettingViewController.m │ │ │ │ │ ├── BUDSplashAdListViewController.h │ │ │ │ │ ├── BUDSplashAdListViewController.m │ │ │ │ │ ├── BUDSplashContainerViewController.h │ │ │ │ │ ├── BUDSplashContainerViewController.m │ │ │ │ │ ├── BUDSplashViewController.h │ │ │ │ │ ├── BUDSplashViewController.m │ │ │ │ │ ├── BUDStreamAdListViewController.h │ │ │ │ │ ├── BUDStreamAdListViewController.m │ │ │ │ │ ├── BUDTestToolsViewController.h │ │ │ │ │ ├── BUDTestToolsViewController.m │ │ │ │ │ ├── BUDToolsSettingViewController.h │ │ │ │ │ ├── BUDToolsSettingViewController.m │ │ │ │ │ ├── BUDVideoPlayerView.h │ │ │ │ │ ├── BUDVideoPlayerView.m │ │ │ │ │ ├── BUDWaterfallViewController.h │ │ │ │ │ ├── BUDWaterfallViewController.m │ │ │ │ │ └── Mediation │ │ │ │ │ │ ├── BUMDBannerViewController.h │ │ │ │ │ │ ├── BUMDBannerViewController.m │ │ │ │ │ │ ├── BUMDDrawAdViewController.h │ │ │ │ │ │ ├── BUMDDrawAdViewController.m │ │ │ │ │ │ ├── BUMDExpressFullScreenVideoViewController.h │ │ │ │ │ │ ├── BUMDExpressFullScreenVideoViewController.m │ │ │ │ │ │ ├── BUMDExpressRewardedVideoViewController.h │ │ │ │ │ │ ├── BUMDExpressRewardedVideoViewController.m │ │ │ │ │ │ ├── BUMDFeedViewController.h │ │ │ │ │ │ ├── BUMDFeedViewController.m │ │ │ │ │ │ ├── BUMDSplashViewController.h │ │ │ │ │ │ └── BUMDSplashViewController.m │ │ │ │ ├── model │ │ │ │ │ ├── BUDConfigModel.h │ │ │ │ │ ├── BUDConfigModel.m │ │ │ │ │ ├── BUDFeedNormalModel.h │ │ │ │ │ ├── BUDFeedNormalModel.m │ │ │ │ │ ├── BUDSelcetedItem.h │ │ │ │ │ ├── BUDSelcetedItem.m │ │ │ │ │ └── Mediation │ │ │ │ │ │ ├── BUMDFeedNormalModel.h │ │ │ │ │ │ └── BUMDFeedNormalModel.m │ │ │ │ ├── view │ │ │ │ │ ├── BUDActionAreaView.h │ │ │ │ │ ├── BUDActionAreaView.m │ │ │ │ │ ├── BUDCollectionViewCell.h │ │ │ │ │ ├── BUDCollectionViewCell.m │ │ │ │ │ ├── BUDCustomPlayerAdView.h │ │ │ │ │ ├── BUDCustomPlayerAdView.m │ │ │ │ │ ├── BUDDrawTableViewCell.h │ │ │ │ │ ├── BUDDrawTableViewCell.m │ │ │ │ │ ├── BUDFeedAdTableViewCell.h │ │ │ │ │ ├── BUDFeedAdTableViewCell.m │ │ │ │ │ ├── BUDFeedNativeTableViewCell.h │ │ │ │ │ ├── BUDFeedNativeTableViewCell.m │ │ │ │ │ ├── BUDFeedNormalTableViewCell.h │ │ │ │ │ ├── BUDFeedNormalTableViewCell.m │ │ │ │ │ ├── BUDFeedStyleHelper.h │ │ │ │ │ ├── BUDFeedStyleHelper.m │ │ │ │ │ ├── BUDNativeBannerTableViewCell.h │ │ │ │ │ ├── BUDNativeBannerTableViewCell.m │ │ │ │ │ ├── BUDNormalButton.h │ │ │ │ │ ├── BUDNormalButton.m │ │ │ │ │ ├── BUDPasterContentView.h │ │ │ │ │ ├── BUDPasterContentView.m │ │ │ │ │ ├── BUDRefreshButton.h │ │ │ │ │ ├── BUDRefreshButton.m │ │ │ │ │ ├── BUDSelectedCollectionViewCell.h │ │ │ │ │ ├── BUDSelectedCollectionViewCell.m │ │ │ │ │ ├── BUDSelectedView.h │ │ │ │ │ ├── BUDSelectedView.m │ │ │ │ │ ├── BUDSettingTableView.h │ │ │ │ │ ├── BUDSettingTableView.m │ │ │ │ │ ├── BUDSwitchView.h │ │ │ │ │ ├── BUDSwitchView.m │ │ │ │ │ ├── BUDVideoView.h │ │ │ │ │ ├── BUDVideoView.m │ │ │ │ │ ├── BUDdemoDislikeCollectionCell.h │ │ │ │ │ ├── BUDdemoDislikeCollectionCell.m │ │ │ │ │ └── Mediation │ │ │ │ │ │ ├── BUMDDrawAdView.h │ │ │ │ │ │ ├── BUMDDrawAdView.m │ │ │ │ │ │ ├── BUMDFeedAdTableViewCell.h │ │ │ │ │ │ ├── BUMDFeedAdTableViewCell.m │ │ │ │ │ │ ├── BUMDFeedNormalTableViewCell.h │ │ │ │ │ │ └── BUMDFeedNormalTableViewCell.m │ │ │ │ └── viewModel │ │ │ │ │ ├── BUDExpressRewardedVideoAgainDelegateObj.h │ │ │ │ │ ├── BUDExpressRewardedVideoAgainDelegateObj.m │ │ │ │ │ ├── BUDMainViewModel.h │ │ │ │ │ ├── BUDMainViewModel.m │ │ │ │ │ ├── BUDSlotViewModel.h │ │ │ │ │ ├── BUDSlotViewModel.m │ │ │ │ │ └── Mediaton │ │ │ │ │ ├── BUMDExpressRewardedVideoAgainDelegateObj.h │ │ │ │ │ ├── BUMDExpressRewardedVideoAgainDelegateObj.m │ │ │ │ │ ├── BUMDRewardedVideoAgainDelegateObj.h │ │ │ │ │ └── BUMDRewardedVideoAgainDelegateObj.m │ │ │ ├── Macros │ │ │ │ ├── BUDCommonMacros.h │ │ │ │ ├── BUDCommonMacros.m │ │ │ │ ├── BUDMacros.h │ │ │ │ └── BUDSlotID.h │ │ │ ├── Menu │ │ │ │ ├── BUDActionCellDefine.h │ │ │ │ ├── BUDActionCellDefine.m │ │ │ │ ├── BUDActionCellView.h │ │ │ │ ├── BUDActionCellView.m │ │ │ │ ├── BUDConfigurationController.h │ │ │ │ ├── BUDConfigurationController.m │ │ │ │ ├── BUDExampleDefine.h │ │ │ │ ├── BUDExampleDefine.m │ │ │ │ ├── BUDMainViewController.h │ │ │ │ └── BUDMainViewController.m │ │ │ └── Until │ │ │ │ ├── Animation │ │ │ │ ├── BUDAnimationTool.h │ │ │ │ └── BUDAnimationTool.m │ │ │ │ ├── BUDBase64.h │ │ │ │ ├── BUDBase64.m │ │ │ │ ├── BUDPrivacyProvider.h │ │ │ │ ├── BUDPrivacyProvider.m │ │ │ │ ├── Category │ │ │ │ ├── NSBundle+BUDemo.h │ │ │ │ ├── NSBundle+BUDemo.m │ │ │ │ ├── NSString+Json.h │ │ │ │ ├── NSString+Json.m │ │ │ │ ├── NSString+LocalizedString.h │ │ │ │ ├── NSString+LocalizedString.m │ │ │ │ ├── UIColor+DarkMode.h │ │ │ │ ├── UIColor+DarkMode.m │ │ │ │ ├── UIView+BUDAdditions.h │ │ │ │ ├── UIView+BUDAdditions.m │ │ │ │ ├── UIView+Draw.h │ │ │ │ ├── UIView+Draw.m │ │ │ │ ├── UIWindow+BUDUtilities.h │ │ │ │ └── UIWindow+BUDUtilities.m │ │ │ │ ├── FPSLabel │ │ │ │ ├── RRFPSBar.h │ │ │ │ └── RRFPSBar.m │ │ │ │ └── ScanFun │ │ │ │ ├── BUDSanWebViewController.h │ │ │ │ └── BUDSanWebViewController.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DevInfo.plist │ │ ├── Info.plist │ │ ├── PrefixHeader.pch │ │ ├── Resource │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ ├── icon-20-ipad.png │ │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ │ ├── icon-20@2x.png │ │ │ │ │ ├── icon-20@3x.png │ │ │ │ │ ├── icon-29-ipad.png │ │ │ │ │ ├── icon-29.png │ │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ ├── icon-40.png │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ ├── icon-76.png │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── adPlay.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── adPlay.png │ │ │ │ ├── comment.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── comment.png │ │ │ │ ├── corner.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── corner.png │ │ │ │ ├── demo_CustomEvent.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── demo_CustomEvent.png │ │ │ │ ├── demo_native.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── demo_native.png │ │ │ │ ├── demo_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── demo_normal.png │ │ │ │ ├── demo_setting.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── demo_setting.png │ │ │ │ ├── demo_video.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── demo_video.png │ │ │ │ ├── draw_back.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── draw_back.png │ │ │ │ ├── feedClose.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── feedClose.png │ │ │ │ ├── forward.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── forward.png │ │ │ │ ├── head.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── head.png │ │ │ │ ├── like.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── like.png │ │ │ │ ├── nativeDislike.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── nativeDislike.png │ │ │ │ ├── nextDislike.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── nextDislike.png │ │ │ │ ├── refresh.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── refresh.png │ │ │ │ ├── shuaxin.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── shuaxin.png │ │ │ │ │ ├── shuaxin@2x.png │ │ │ │ │ └── shuaxin@3x.png │ │ │ │ ├── simulateBannerFeed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── simulateBannerFeed.jpg │ │ │ │ ├── tt_ad_logo_new.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_ad_logo_new.png │ │ │ │ ├── tt_coupon_bg.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_coupon_bg.png │ │ │ │ ├── tt_icon_live_video.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_icon_live_video.png │ │ │ │ ├── tt_lu_backup_img.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_lu_backup_img.png │ │ │ │ ├── tt_lu_rect_bg.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_lu_rect_bg.png │ │ │ │ ├── tt_shop_page_guide_gif.dataset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_shop_page_guide_gif.gif │ │ │ │ ├── tt_shop_page_red_bag.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_shop_page_red_bag (1) (1) (1) (1) (1) (1) (1) (1) (1).png │ │ │ │ ├── tt_shopping_street_bg.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_shopping_street_bg.png │ │ │ │ └── tt_tooltip_people.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tt_tooltip_people.png │ │ │ ├── Lottie │ │ │ │ └── swipe_upDown │ │ │ │ │ ├── images │ │ │ │ │ └── swipe_up_down.png │ │ │ │ │ └── swipe_up_down.json │ │ │ ├── drawVideo │ │ │ │ └── feedInfo.cactus │ │ │ └── music.mp3 │ │ ├── Support │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── ja.lproj │ │ │ │ ├── LaunchScreen.strings │ │ │ │ └── Main.strings │ │ │ ├── ko.lproj │ │ │ │ ├── LaunchScreen.strings │ │ │ │ └── Main.strings │ │ │ ├── main.m │ │ │ └── zh-Hans.lproj │ │ │ │ ├── LaunchScreen.strings │ │ │ │ └── Main.strings │ │ ├── en.lproj │ │ │ └── BUDemoLanguage.strings │ │ ├── ja.lproj │ │ │ └── BUDemoLanguage.strings │ │ ├── ko.lproj │ │ │ └── BUDemoLanguage.strings │ │ └── zh-Hans.lproj │ │ │ └── BUDemoLanguage.strings │ ├── MediationCustomAdapter │ │ ├── BUMDCustomBannerAdapter.h │ │ ├── BUMDCustomBannerAdapter.m │ │ ├── BUMDCustomConfigAdapter.h │ │ ├── BUMDCustomConfigAdapter.m │ │ ├── BUMDCustomDrawAdHelper.h │ │ ├── BUMDCustomDrawAdHelper.m │ │ ├── BUMDCustomDrawAdapter.h │ │ ├── BUMDCustomDrawAdapter.m │ │ ├── BUMDCustomFullscreenVideoAdapter.h │ │ ├── BUMDCustomFullscreenVideoAdapter.m │ │ ├── BUMDCustomInterstitialAdapter.h │ │ ├── BUMDCustomInterstitialAdapter.m │ │ ├── BUMDCustomNativeAdHelper.h │ │ ├── BUMDCustomNativeAdHelper.m │ │ ├── BUMDCustomNativeAdapter.h │ │ ├── BUMDCustomNativeAdapter.m │ │ ├── BUMDCustomRewardedVideoAdapter.h │ │ ├── BUMDCustomRewardedVideoAdapter.m │ │ ├── BUMDCustomSplashAdapter.h │ │ ├── BUMDCustomSplashAdapter.m │ │ └── Other │ │ │ ├── BUMDCustomBannerView.h │ │ │ ├── BUMDCustomBannerView.m │ │ │ ├── BUMDCustomDrawData.h │ │ │ ├── BUMDCustomDrawData.m │ │ │ ├── BUMDCustomDrawView.h │ │ │ ├── BUMDCustomDrawView.m │ │ │ ├── BUMDCustomExpressDrawView.h │ │ │ ├── BUMDCustomExpressDrawView.m │ │ │ ├── BUMDCustomExpressNativeView.h │ │ │ ├── BUMDCustomExpressNativeView.m │ │ │ ├── BUMDCustomFullscreenView.h │ │ │ ├── BUMDCustomFullscreenView.m │ │ │ ├── BUMDCustomInterstitialView.h │ │ │ ├── BUMDCustomInterstitialView.m │ │ │ ├── BUMDCustomNativeData.h │ │ │ ├── BUMDCustomNativeData.m │ │ │ ├── BUMDCustomNativeView.h │ │ │ ├── BUMDCustomNativeView.m │ │ │ ├── BUMDCustomRewardedVideoView.h │ │ │ ├── BUMDCustomRewardedVideoView.m │ │ │ ├── BUMDCustomSplashView.h │ │ │ ├── BUMDCustomSplashView.m │ │ │ ├── BUMDStoreViewController.h │ │ │ └── BUMDStoreViewController.m │ └── Podfile ├── InternationalDemo │ ├── CustomEventAdapter │ │ ├── Adapter │ │ │ ├── BUDAdmobTool.h │ │ │ ├── BUDAdmobTool.m │ │ │ ├── BUDAdmob_BannerCustomEventAdapter.h │ │ │ ├── BUDAdmob_BannerCustomEventAdapter.m │ │ │ ├── BUDAdmob_CustomEventAdapter.h │ │ │ ├── BUDAdmob_CustomEventAdapter.m │ │ │ ├── BUDAdmob_FullScreenVideoCustomEventAdapter.h │ │ │ ├── BUDAdmob_FullScreenVideoCustomEventAdapter.m │ │ │ ├── BUDAdmob_NativeFeedCustomEventAdapter.h │ │ │ ├── BUDAdmob_NativeFeedCustomEventAdapter.m │ │ │ ├── BUDAdmob_RewardCustomEventAdapter.h │ │ │ └── BUDAdmob_RewardCustomEventAdapter.m │ │ └── ExamplePage │ │ │ ├── MainPage │ │ │ ├── BUDAdmobCustomEventViewController.h │ │ │ └── BUDAdmobCustomEventViewController.m │ │ │ └── SubPage │ │ │ ├── BUDAdmob_BannerCusEventVC.h │ │ │ ├── BUDAdmob_BannerCusEventVC.m │ │ │ ├── BUDAdmob_FeedNativeCusEventVC.h │ │ │ ├── BUDAdmob_FeedNativeCusEventVC.m │ │ │ ├── BUDAdmob_FullScreenCusEventVC.h │ │ │ ├── BUDAdmob_FullScreenCusEventVC.m │ │ │ ├── BUDAdmob_RewardVideoCusEventVC.h │ │ │ ├── BUDAdmob_RewardVideoCusEventVC.m │ │ │ └── UnifiedNativeAdView.xib │ ├── Objective-C │ │ ├── .DS_Store │ │ ├── BUADVADemo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── BUDemo │ │ │ ├── App │ │ │ │ ├── Example │ │ │ │ │ ├── BUDAdManager.h │ │ │ │ │ ├── BUDAdManager.m │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── BUDBaseExampleViewController.h │ │ │ │ │ │ ├── BUDBaseExampleViewController.m │ │ │ │ │ │ ├── BUDSettingViewController.h │ │ │ │ │ │ ├── BUDSettingViewController.m │ │ │ │ │ │ ├── Banner │ │ │ │ │ │ │ ├── BUDBannerViewController.h │ │ │ │ │ │ │ └── BUDBannerViewController.m │ │ │ │ │ │ ├── Intersititial │ │ │ │ │ │ │ ├── BUDInterstitialViewController.h │ │ │ │ │ │ │ └── BUDInterstitialViewController.m │ │ │ │ │ │ ├── Native │ │ │ │ │ │ │ ├── BUDNativeViewController.h │ │ │ │ │ │ │ └── BUDNativeViewController.m │ │ │ │ │ │ ├── OpenApp │ │ │ │ │ │ │ ├── .DS_Store │ │ │ │ │ │ │ ├── BULOpenAppViewController.h │ │ │ │ │ │ │ └── BULOpenAppViewController.m │ │ │ │ │ │ └── Rewarded │ │ │ │ │ │ │ ├── BUDRewardedViewController.h │ │ │ │ │ │ │ └── BUDRewardedViewController.m │ │ │ │ │ ├── WebAd │ │ │ │ │ │ ├── BUDFeedAdView.h │ │ │ │ │ │ ├── BUDFeedAdView.m │ │ │ │ │ │ ├── BUDNativeBannerView.h │ │ │ │ │ │ ├── BUDNativeBannerView.m │ │ │ │ │ │ ├── BUDWebViewController.h │ │ │ │ │ │ └── BUDWebViewController.m │ │ │ │ │ ├── model │ │ │ │ │ │ ├── BUDConfigModel.h │ │ │ │ │ │ ├── BUDConfigModel.m │ │ │ │ │ │ ├── BUDFeedNormalModel.h │ │ │ │ │ │ ├── BUDFeedNormalModel.m │ │ │ │ │ │ ├── BUDSelcetedItem.h │ │ │ │ │ │ └── BUDSelcetedItem.m │ │ │ │ │ ├── view │ │ │ │ │ │ ├── BUDActionAreaView.h │ │ │ │ │ │ ├── BUDActionAreaView.m │ │ │ │ │ │ ├── BUDFeedNormalTableViewCell.h │ │ │ │ │ │ ├── BUDFeedNormalTableViewCell.m │ │ │ │ │ │ ├── BUDFeedStyleHelper.h │ │ │ │ │ │ ├── BUDFeedStyleHelper.m │ │ │ │ │ │ ├── BUDNativeView.h │ │ │ │ │ │ ├── BUDNativeView.m │ │ │ │ │ │ ├── BUDNormalButton.h │ │ │ │ │ │ ├── BUDNormalButton.m │ │ │ │ │ │ ├── BUDRefreshButton.h │ │ │ │ │ │ ├── BUDRefreshButton.m │ │ │ │ │ │ ├── BUDSelectedCollectionViewCell.h │ │ │ │ │ │ ├── BUDSelectedCollectionViewCell.m │ │ │ │ │ │ ├── BUDSelectedView.h │ │ │ │ │ │ ├── BUDSelectedView.m │ │ │ │ │ │ ├── BUDSettingTableView.h │ │ │ │ │ │ ├── BUDSettingTableView.m │ │ │ │ │ │ ├── BUDSwitchView.h │ │ │ │ │ │ ├── BUDSwitchView.m │ │ │ │ │ │ ├── BUDVideoView.h │ │ │ │ │ │ └── BUDVideoView.m │ │ │ │ │ └── viewModel │ │ │ │ │ │ ├── BUDMainViewModel.h │ │ │ │ │ │ ├── BUDMainViewModel.m │ │ │ │ │ │ ├── BUDSlotViewModel.h │ │ │ │ │ │ └── BUDSlotViewModel.m │ │ │ │ ├── Macros │ │ │ │ │ ├── BUDMacros.h │ │ │ │ │ └── BUDSlotID.h │ │ │ │ ├── Menu │ │ │ │ │ ├── BUDActionCellDefine.h │ │ │ │ │ ├── BUDActionCellDefine.m │ │ │ │ │ ├── BUDActionCellView.h │ │ │ │ │ ├── BUDActionCellView.m │ │ │ │ │ ├── BUDExampleDefine.h │ │ │ │ │ ├── BUDExampleDefine.m │ │ │ │ │ ├── BUDMainViewController.h │ │ │ │ │ └── BUDMainViewController.m │ │ │ │ └── Until │ │ │ │ │ ├── BUDBase64.h │ │ │ │ │ ├── BUDBase64.m │ │ │ │ │ ├── Category │ │ │ │ │ ├── NSString+Json.h │ │ │ │ │ ├── NSString+Json.m │ │ │ │ │ ├── NSString+LocalizedString.h │ │ │ │ │ ├── NSString+LocalizedString.m │ │ │ │ │ ├── UIColor+DarkMode.h │ │ │ │ │ ├── UIColor+DarkMode.m │ │ │ │ │ ├── UIView+Draw.h │ │ │ │ │ └── UIView+Draw.m │ │ │ │ │ ├── FPSLabel │ │ │ │ │ ├── RRFPSBar.h │ │ │ │ │ └── RRFPSBar.m │ │ │ │ │ └── ScanFun │ │ │ │ │ ├── BUDSanWebViewController.h │ │ │ │ │ └── BUDSanWebViewController.m │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── DevInfo.plist │ │ │ ├── Info.plist │ │ │ ├── PrefixHeader.pch │ │ │ ├── Resource │ │ │ │ ├── 1111.html │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon-1024.png │ │ │ │ │ │ ├── icon-20-ipad.png │ │ │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ │ │ ├── icon-20@2x.png │ │ │ │ │ │ ├── icon-20@3x.png │ │ │ │ │ │ ├── icon-29-ipad.png │ │ │ │ │ │ ├── icon-29.png │ │ │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ │ │ ├── icon-29@2x.png │ │ │ │ │ │ ├── icon-29@3x.png │ │ │ │ │ │ ├── icon-40.png │ │ │ │ │ │ ├── icon-40@2x.png │ │ │ │ │ │ ├── icon-40@3x.png │ │ │ │ │ │ ├── icon-60@2x.png │ │ │ │ │ │ ├── icon-60@3x.png │ │ │ │ │ │ ├── icon-76.png │ │ │ │ │ │ ├── icon-76@2x.png │ │ │ │ │ │ └── icon-83.5@2x.png │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── adPlay.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── adPlay.png │ │ │ │ │ ├── comment.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── comment.png │ │ │ │ │ ├── corner.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── corner.png │ │ │ │ │ ├── demo_CustomEvent.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_CustomEvent.png │ │ │ │ │ ├── demo_native.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_native.png │ │ │ │ │ ├── demo_normal.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_normal.png │ │ │ │ │ ├── demo_setting.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_setting.png │ │ │ │ │ ├── demo_video.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── demo_video.png │ │ │ │ │ ├── draw_back.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── draw_back.png │ │ │ │ │ ├── feedClose.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── feedClose.png │ │ │ │ │ ├── forward.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── forward.png │ │ │ │ │ ├── head.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── head.png │ │ │ │ │ ├── like.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── like.png │ │ │ │ │ ├── nativeDislike.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── nativeDislike.png │ │ │ │ │ ├── nextDislike.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── nextDislike.png │ │ │ │ │ ├── refresh.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── shuaxin.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── shuaxin.png │ │ │ │ │ │ ├── shuaxin@2x.png │ │ │ │ │ │ └── shuaxin@3x.png │ │ │ │ │ └── simulateBannerFeed.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── simulateBannerFeed.jpg │ │ │ │ ├── drawVideo │ │ │ │ │ └── feedInfo.cactus │ │ │ │ ├── index1.css │ │ │ │ ├── index1.html │ │ │ │ ├── index1.js │ │ │ │ └── music.mp3 │ │ │ ├── Support │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── LaunchScreen.strings │ │ │ │ │ └── Main.strings │ │ │ │ ├── ko.lproj │ │ │ │ │ ├── LaunchScreen.strings │ │ │ │ │ └── Main.strings │ │ │ │ ├── main.m │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ ├── LaunchScreen.strings │ │ │ │ │ └── Main.strings │ │ │ ├── en.lproj │ │ │ │ └── BUDemoLanguage.strings │ │ │ ├── ja.lproj │ │ │ │ └── BUDemoLanguage.strings │ │ │ ├── ko.lproj │ │ │ │ └── BUDemoLanguage.strings │ │ │ └── zh-Hans.lproj │ │ │ │ └── BUDemoLanguage.strings │ │ └── Podfile │ └── Swift │ │ ├── .DS_Store │ │ ├── BUADVADemo_Swift.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── BUADVADemo_Swift │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20-ipad.png │ │ │ │ ├── icon-20@2x-ipad.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29-ipad.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x-ipad.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── ExampleApp │ │ │ ├── Category │ │ │ │ ├── UIColor+DarkMode.h │ │ │ │ └── UIColor+DarkMode.m │ │ │ ├── MainPage │ │ │ │ └── ViewController.swift │ │ │ └── SubPage │ │ │ │ ├── BUDAppOpenAdViewController.swift │ │ │ │ ├── BUDBannerViewController.swift │ │ │ │ ├── BUDCustomEventAdapterController.swift │ │ │ │ ├── BUDInterstitialViewController.swift │ │ │ │ ├── BUDNativeView.swift │ │ │ │ ├── BUDNativeViewController.swift │ │ │ │ └── BUDRewardVideoAdViewController.swift │ │ ├── Info.plist │ │ ├── SceneDelegate.swift │ │ └── SwiftSocket-Brigding-Header.h │ │ └── Podfile ├── PangleQuickStartDemo │ ├── .gitignore │ ├── PangleQuickStartDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── changu.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── PangleQuickStartDemo.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── PangleQuickStartDemo │ │ ├── AdmobAdapterDemo-Bridging-Header.h │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 120-1.png │ │ │ │ ├── 120.png │ │ │ │ ├── 180.png │ │ │ │ ├── 40-1.png │ │ │ │ ├── 40.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ ├── Contents.json │ │ │ │ └── playstore.png │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── CustomTableViewCell │ │ │ ├── NativeAdCellTableViewCell.swift │ │ │ ├── NativeAdCellTableViewCell.xib │ │ │ ├── TemplateNativeAdCell.swift │ │ │ └── TemplateNativeAdCell.xib │ │ ├── FullScreenVideoViewController.swift │ │ ├── Info.plist │ │ ├── NativeAdsViewController.swift │ │ ├── RewardedVideoViewController.swift │ │ ├── SceneDelegate.swift │ │ ├── TemplateBannerAdsViewController.swift │ │ ├── TemplateNativeViewController.swift │ │ └── ViewController.swift │ ├── PangleQuickStartDemoTests │ │ ├── Info.plist │ │ └── PangleQuickStartDemoTests.swift │ ├── PangleQuickStartDemoUITests │ │ ├── Info.plist │ │ └── PangleQuickStartDemoUITests.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Quick-Start-Manual │ │ ├── en │ │ │ ├── 1-integrate_en.md │ │ │ ├── 2-naive_ad_en.md │ │ │ ├── 3-reward_video_en.md │ │ │ ├── 4-fullscreen_video_en.md │ │ │ ├── 5-template_banner_ad_en.md │ │ │ └── 6-mediation_en.md │ │ ├── ja │ │ │ ├── 1-integrate_ja.md │ │ │ ├── 2-naive_ad_ja.md │ │ │ ├── 3-reward_video_ja.md │ │ │ ├── 4-fullscreen_video_ja.md │ │ │ ├── 5-template_banner_ad_ja.md │ │ │ └── 6-mediation_ja.md │ │ └── pics │ │ │ ├── fullscreen_add.png │ │ │ ├── fullscreen_set.png │ │ │ ├── native_origin.png │ │ │ ├── native_template.png │ │ │ ├── reward_video_add.png │ │ │ ├── reward_video_set.png │ │ │ ├── template320_add.png │ │ │ ├── template_banner_add.png │ │ │ └── template_banner_set.png │ └── README.md └── README.md ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/.github/ISSUE_TEMPLATE/bug-report-------.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request-------.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/.github/ISSUE_TEMPLATE/feature-request-------.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/.gitignore -------------------------------------------------------------------------------- /Ads-CN/Ads-CN.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Ads-CN/Ads-CN.podspec -------------------------------------------------------------------------------- /Ads-Global/Ads-Global.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Ads-Global/Ads-Global.podspec -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUADDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUADDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUADDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUADDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/BUDAdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/BUDAdManager.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/BUDAdManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/BUDAdManager.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDFeedAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDFeedAdView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDFeedAdView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDFeedAdView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDNativeBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDNativeBannerView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDNativeBannerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDNativeBannerView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDWebViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/WebAd/BUDWebViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBannerAdListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBannerAdListViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBannerAdListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBannerAdListViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBaseExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBaseExampleViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBaseExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBaseExampleViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBiddingSplashViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBiddingSplashViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBiddingSplashViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDBiddingSplashViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomDislikeToolsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomDislikeToolsController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomDislikeToolsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomDislikeToolsController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomDislikeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomDislikeViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomDislikeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomDislikeViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomVideoPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomVideoPlayerViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomVideoPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDCustomVideoPlayerViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDDrawAdListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDDrawAdListViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDDrawAdListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDDrawAdListViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDDrawVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDDrawVideoViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDDrawVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDDrawVideoViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDECMallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDECMallViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDECMallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDECMallViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressBannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressBannerViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressBannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressBannerViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressDrawViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressDrawViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressDrawViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressDrawViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressFeedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressFeedViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressFeedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressFeedViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressFullScreenVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressFullScreenVideoViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressFullScreenVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressFullScreenVideoViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressListBannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressListBannerViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressListBannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressListBannerViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressRewardedVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressRewardedVideoViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressRewardedVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressRewardedVideoViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDExpressViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFeedAdListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFeedAdListViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFeedAdListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFeedAdListViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFeedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFeedViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFeedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFeedViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFullScreenVideoAdListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFullScreenVideoAdListViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFullScreenVideoAdListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDFullScreenVideoAdListViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDListViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDListViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDNativeBannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDNativeBannerViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDNativeBannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDNativeBannerViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDNativeFeedCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDNativeFeedCollectionViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDNativeFeedCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDNativeFeedCollectionViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterBaseViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterBaseViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterCustomPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterCustomPlayerViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterCustomPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterCustomPlayerViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDPasterViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDRewardedAdListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDRewardedAdListViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDRewardedAdListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDRewardedAdListViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSettingViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSettingViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashAdListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashAdListViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashAdListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashAdListViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashContainerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashContainerViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashContainerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashContainerViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDSplashViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDStreamAdListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDStreamAdListViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDStreamAdListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDStreamAdListViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDTestToolsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDTestToolsViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDTestToolsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDTestToolsViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDToolsSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDToolsSettingViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDToolsSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDToolsSettingViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDVideoPlayerView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDVideoPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDVideoPlayerView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDWaterfallViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDWaterfallViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/BUDWaterfallViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/BUDWaterfallViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDBannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDBannerViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDBannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDBannerViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDDrawAdViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDDrawAdViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDDrawAdViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDDrawAdViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDExpressFullScreenVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDExpressFullScreenVideoViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDExpressFullScreenVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDExpressFullScreenVideoViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDExpressRewardedVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDExpressRewardedVideoViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDExpressRewardedVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDExpressRewardedVideoViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDFeedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDFeedViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDFeedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDFeedViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDSplashViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDSplashViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDSplashViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/controller/Mediation/BUMDSplashViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/model/BUDConfigModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/model/BUDConfigModel.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/model/BUDConfigModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/model/BUDConfigModel.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/model/BUDFeedNormalModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/model/BUDFeedNormalModel.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/model/BUDFeedNormalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/model/BUDFeedNormalModel.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/model/BUDSelcetedItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/model/BUDSelcetedItem.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/model/BUDSelcetedItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/model/BUDSelcetedItem.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/model/Mediation/BUMDFeedNormalModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/model/Mediation/BUMDFeedNormalModel.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/model/Mediation/BUMDFeedNormalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/model/Mediation/BUMDFeedNormalModel.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDActionAreaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDActionAreaView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDActionAreaView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDActionAreaView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDCollectionViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDCollectionViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDCustomPlayerAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDCustomPlayerAdView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDCustomPlayerAdView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDCustomPlayerAdView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDDrawTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDDrawTableViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDDrawTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDDrawTableViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedAdTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedAdTableViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedAdTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedAdTableViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedNativeTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedNativeTableViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedNativeTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedNativeTableViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedNormalTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedNormalTableViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedNormalTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedNormalTableViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedStyleHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedStyleHelper.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedStyleHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDFeedStyleHelper.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDNativeBannerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDNativeBannerTableViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDNativeBannerTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDNativeBannerTableViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDNormalButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDNormalButton.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDNormalButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDNormalButton.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDPasterContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDPasterContentView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDPasterContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDPasterContentView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDRefreshButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDRefreshButton.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDRefreshButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDRefreshButton.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDSelectedCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDSelectedCollectionViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDSelectedCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDSelectedCollectionViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDSelectedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDSelectedView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDSelectedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDSelectedView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDSettingTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDSettingTableView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDSettingTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDSettingTableView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDSwitchView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDSwitchView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDVideoView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDVideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDVideoView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDdemoDislikeCollectionCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDdemoDislikeCollectionCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/BUDdemoDislikeCollectionCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/BUDdemoDislikeCollectionCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDDrawAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDDrawAdView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDDrawAdView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDDrawAdView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDFeedAdTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDFeedAdTableViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDFeedAdTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDFeedAdTableViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDFeedNormalTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDFeedNormalTableViewCell.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDFeedNormalTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/view/Mediation/BUMDFeedNormalTableViewCell.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDExpressRewardedVideoAgainDelegateObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDExpressRewardedVideoAgainDelegateObj.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDExpressRewardedVideoAgainDelegateObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDExpressRewardedVideoAgainDelegateObj.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDMainViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDMainViewModel.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDMainViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDMainViewModel.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDSlotViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDSlotViewModel.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDSlotViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/BUDSlotViewModel.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/Mediaton/BUMDExpressRewardedVideoAgainDelegateObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/Mediaton/BUMDExpressRewardedVideoAgainDelegateObj.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/Mediaton/BUMDExpressRewardedVideoAgainDelegateObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/Mediaton/BUMDExpressRewardedVideoAgainDelegateObj.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/Mediaton/BUMDRewardedVideoAgainDelegateObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/Mediaton/BUMDRewardedVideoAgainDelegateObj.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Example/viewModel/Mediaton/BUMDRewardedVideoAgainDelegateObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Example/viewModel/Mediaton/BUMDRewardedVideoAgainDelegateObj.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Macros/BUDCommonMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Macros/BUDCommonMacros.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Macros/BUDCommonMacros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Macros/BUDCommonMacros.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Macros/BUDMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Macros/BUDMacros.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Macros/BUDSlotID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Macros/BUDSlotID.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDActionCellDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDActionCellDefine.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDActionCellDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDActionCellDefine.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDActionCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDActionCellView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDActionCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDActionCellView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDConfigurationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDConfigurationController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDConfigurationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDConfigurationController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDExampleDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDExampleDefine.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDExampleDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDExampleDefine.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDMainViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Menu/BUDMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Menu/BUDMainViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Animation/BUDAnimationTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Animation/BUDAnimationTool.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Animation/BUDAnimationTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Animation/BUDAnimationTool.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/BUDBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/BUDBase64.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/BUDBase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/BUDBase64.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/BUDPrivacyProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/BUDPrivacyProvider.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/BUDPrivacyProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/BUDPrivacyProvider.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/NSBundle+BUDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/NSBundle+BUDemo.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/NSBundle+BUDemo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/NSBundle+BUDemo.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/NSString+Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/NSString+Json.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/NSString+Json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/NSString+Json.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/NSString+LocalizedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/NSString+LocalizedString.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/NSString+LocalizedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/NSString+LocalizedString.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/UIColor+DarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/UIColor+DarkMode.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/UIColor+DarkMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/UIColor+DarkMode.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/UIView+BUDAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/UIView+BUDAdditions.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/UIView+BUDAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/UIView+BUDAdditions.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/UIView+Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/UIView+Draw.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/UIView+Draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/UIView+Draw.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/UIWindow+BUDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/UIWindow+BUDUtilities.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/Category/UIWindow+BUDUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/Category/UIWindow+BUDUtilities.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/FPSLabel/RRFPSBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/FPSLabel/RRFPSBar.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/FPSLabel/RRFPSBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/FPSLabel/RRFPSBar.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/ScanFun/BUDSanWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/ScanFun/BUDSanWebViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/App/Until/ScanFun/BUDSanWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/App/Until/ScanFun/BUDSanWebViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/DevInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/DevInfo.plist -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Info.plist -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/PrefixHeader.pch -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/adPlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/adPlay.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/adPlay.imageset/adPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/adPlay.imageset/adPlay.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/comment.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/comment.imageset/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/comment.imageset/comment.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/corner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/corner.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/corner.imageset/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/corner.imageset/corner.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_CustomEvent.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_CustomEvent.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_CustomEvent.imageset/demo_CustomEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_CustomEvent.imageset/demo_CustomEvent.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_native.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_native.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_native.imageset/demo_native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_native.imageset/demo_native.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_normal.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_normal.imageset/demo_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_normal.imageset/demo_normal.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_setting.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_setting.imageset/demo_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_setting.imageset/demo_setting.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_video.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_video.imageset/demo_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/demo_video.imageset/demo_video.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/draw_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/draw_back.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/draw_back.imageset/draw_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/draw_back.imageset/draw_back.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/feedClose.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/feedClose.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/feedClose.imageset/feedClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/feedClose.imageset/feedClose.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/forward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/forward.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/forward.imageset/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/forward.imageset/forward.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/head.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/head.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/head.imageset/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/head.imageset/head.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/like.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/like.imageset/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/like.imageset/like.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/nativeDislike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/nativeDislike.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/nativeDislike.imageset/nativeDislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/nativeDislike.imageset/nativeDislike.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/nextDislike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/nextDislike.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/nextDislike.imageset/nextDislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/nextDislike.imageset/nextDislike.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/refresh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/refresh.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/refresh.imageset/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/refresh.imageset/refresh.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin@2x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin@3x.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/simulateBannerFeed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/simulateBannerFeed.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/simulateBannerFeed.imageset/simulateBannerFeed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/simulateBannerFeed.imageset/simulateBannerFeed.jpg -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_ad_logo_new.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_ad_logo_new.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_ad_logo_new.imageset/tt_ad_logo_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_ad_logo_new.imageset/tt_ad_logo_new.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_coupon_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_coupon_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_coupon_bg.imageset/tt_coupon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_coupon_bg.imageset/tt_coupon_bg.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_icon_live_video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_icon_live_video.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_icon_live_video.imageset/tt_icon_live_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_icon_live_video.imageset/tt_icon_live_video.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_lu_backup_img.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_lu_backup_img.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_lu_backup_img.imageset/tt_lu_backup_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_lu_backup_img.imageset/tt_lu_backup_img.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_lu_rect_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_lu_rect_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_lu_rect_bg.imageset/tt_lu_rect_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_lu_rect_bg.imageset/tt_lu_rect_bg.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shop_page_guide_gif.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shop_page_guide_gif.dataset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shop_page_guide_gif.dataset/tt_shop_page_guide_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shop_page_guide_gif.dataset/tt_shop_page_guide_gif.gif -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shop_page_red_bag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shop_page_red_bag.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shop_page_red_bag.imageset/tt_shop_page_red_bag (1) (1) (1) (1) (1) (1) (1) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shop_page_red_bag.imageset/tt_shop_page_red_bag (1) (1) (1) (1) (1) (1) (1) (1) (1).png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shopping_street_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shopping_street_bg.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shopping_street_bg.imageset/tt_shopping_street_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_shopping_street_bg.imageset/tt_shopping_street_bg.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_tooltip_people.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_tooltip_people.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_tooltip_people.imageset/tt_tooltip_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Assets.xcassets/tt_tooltip_people.imageset/tt_tooltip_people.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Lottie/swipe_upDown/images/swipe_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Lottie/swipe_upDown/images/swipe_up_down.png -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/Lottie/swipe_upDown/swipe_up_down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/Lottie/swipe_upDown/swipe_up_down.json -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/drawVideo/feedInfo.cactus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/drawVideo/feedInfo.cactus -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Resource/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Resource/music.mp3 -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Support/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Support/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Support/ja.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/ja.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Support/ko.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/ko.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Support/main.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/Support/zh-Hans.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/Support/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/en.lproj/BUDemoLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/en.lproj/BUDemoLanguage.strings -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/ja.lproj/BUDemoLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/ja.lproj/BUDemoLanguage.strings -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/ko.lproj/BUDemoLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/ko.lproj/BUDemoLanguage.strings -------------------------------------------------------------------------------- /Demo/DomesticDemo/BUDemo/zh-Hans.lproj/BUDemoLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/BUDemo/zh-Hans.lproj/BUDemoLanguage.strings -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomBannerAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomBannerAdapter.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomBannerAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomBannerAdapter.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomConfigAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomConfigAdapter.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomConfigAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomConfigAdapter.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomDrawAdHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomDrawAdHelper.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomDrawAdHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomDrawAdHelper.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomDrawAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomDrawAdapter.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomDrawAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomDrawAdapter.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomFullscreenVideoAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomFullscreenVideoAdapter.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomFullscreenVideoAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomFullscreenVideoAdapter.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomInterstitialAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomInterstitialAdapter.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomInterstitialAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomInterstitialAdapter.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomNativeAdHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomNativeAdHelper.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomNativeAdHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomNativeAdHelper.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomNativeAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomNativeAdapter.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomNativeAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomNativeAdapter.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomRewardedVideoAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomRewardedVideoAdapter.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomRewardedVideoAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomRewardedVideoAdapter.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomSplashAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomSplashAdapter.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomSplashAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/BUMDCustomSplashAdapter.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomBannerView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomBannerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomBannerView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomDrawData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomDrawData.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomDrawData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomDrawData.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomDrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomDrawView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomDrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomDrawView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomExpressDrawView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomExpressDrawView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomExpressDrawView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomExpressDrawView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomExpressNativeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomExpressNativeView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomExpressNativeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomExpressNativeView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomFullscreenView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomFullscreenView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomFullscreenView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomFullscreenView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomInterstitialView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomInterstitialView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomInterstitialView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomInterstitialView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomNativeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomNativeData.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomNativeData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomNativeData.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomNativeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomNativeView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomNativeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomNativeView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomRewardedVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomRewardedVideoView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomRewardedVideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomRewardedVideoView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomSplashView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomSplashView.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomSplashView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDCustomSplashView.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDStoreViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDStoreViewController.h -------------------------------------------------------------------------------- /Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDStoreViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/MediationCustomAdapter/Other/BUMDStoreViewController.m -------------------------------------------------------------------------------- /Demo/DomesticDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/DomesticDemo/Podfile -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmobTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmobTool.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmobTool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmobTool.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_BannerCustomEventAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_BannerCustomEventAdapter.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_BannerCustomEventAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_BannerCustomEventAdapter.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_CustomEventAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_CustomEventAdapter.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_CustomEventAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_CustomEventAdapter.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_FullScreenVideoCustomEventAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_FullScreenVideoCustomEventAdapter.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_FullScreenVideoCustomEventAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_FullScreenVideoCustomEventAdapter.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_NativeFeedCustomEventAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_NativeFeedCustomEventAdapter.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_NativeFeedCustomEventAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_NativeFeedCustomEventAdapter.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_RewardCustomEventAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_RewardCustomEventAdapter.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_RewardCustomEventAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/Adapter/BUDAdmob_RewardCustomEventAdapter.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/MainPage/BUDAdmobCustomEventViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/MainPage/BUDAdmobCustomEventViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/MainPage/BUDAdmobCustomEventViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/MainPage/BUDAdmobCustomEventViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_BannerCusEventVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_BannerCusEventVC.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_BannerCusEventVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_BannerCusEventVC.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_FeedNativeCusEventVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_FeedNativeCusEventVC.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_FeedNativeCusEventVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_FeedNativeCusEventVC.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_FullScreenCusEventVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_FullScreenCusEventVC.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_FullScreenCusEventVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_FullScreenCusEventVC.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_RewardVideoCusEventVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_RewardVideoCusEventVC.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_RewardVideoCusEventVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/BUDAdmob_RewardVideoCusEventVC.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/UnifiedNativeAdView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/CustomEventAdapter/ExamplePage/SubPage/UnifiedNativeAdView.xib -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/.DS_Store -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUADVADemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUADVADemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUADVADemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUADVADemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/BUDAdManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/BUDAdManager.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/BUDAdManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/BUDAdManager.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/BUDBaseExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/BUDBaseExampleViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/BUDBaseExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/BUDBaseExampleViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/BUDSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/BUDSettingViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/BUDSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/BUDSettingViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Banner/BUDBannerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Banner/BUDBannerViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Banner/BUDBannerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Banner/BUDBannerViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Intersititial/BUDInterstitialViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Intersititial/BUDInterstitialViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Intersititial/BUDInterstitialViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Intersititial/BUDInterstitialViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Native/BUDNativeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Native/BUDNativeViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Native/BUDNativeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Native/BUDNativeViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/OpenApp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/OpenApp/.DS_Store -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/OpenApp/BULOpenAppViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/OpenApp/BULOpenAppViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/OpenApp/BULOpenAppViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/OpenApp/BULOpenAppViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Rewarded/BUDRewardedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Rewarded/BUDRewardedViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Rewarded/BUDRewardedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/Controller/Rewarded/BUDRewardedViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDFeedAdView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDFeedAdView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDFeedAdView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDFeedAdView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDNativeBannerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDNativeBannerView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDNativeBannerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDNativeBannerView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDWebViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/WebAd/BUDWebViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDConfigModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDConfigModel.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDConfigModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDConfigModel.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDFeedNormalModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDFeedNormalModel.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDFeedNormalModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDFeedNormalModel.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDSelcetedItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDSelcetedItem.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDSelcetedItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/model/BUDSelcetedItem.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDActionAreaView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDActionAreaView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDActionAreaView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDActionAreaView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDFeedNormalTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDFeedNormalTableViewCell.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDFeedNormalTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDFeedNormalTableViewCell.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDFeedStyleHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDFeedStyleHelper.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDFeedStyleHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDFeedStyleHelper.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDNativeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDNativeView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDNativeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDNativeView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDNormalButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDNormalButton.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDNormalButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDNormalButton.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDRefreshButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDRefreshButton.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDRefreshButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDRefreshButton.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSelectedCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSelectedCollectionViewCell.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSelectedCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSelectedCollectionViewCell.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSelectedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSelectedView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSelectedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSelectedView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSettingTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSettingTableView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSettingTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSettingTableView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSwitchView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDSwitchView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDVideoView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDVideoView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/view/BUDVideoView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/viewModel/BUDMainViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/viewModel/BUDMainViewModel.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/viewModel/BUDMainViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/viewModel/BUDMainViewModel.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/viewModel/BUDSlotViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/viewModel/BUDSlotViewModel.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Example/viewModel/BUDSlotViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Example/viewModel/BUDSlotViewModel.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Macros/BUDMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Macros/BUDMacros.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Macros/BUDSlotID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Macros/BUDSlotID.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDActionCellDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDActionCellDefine.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDActionCellDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDActionCellDefine.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDActionCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDActionCellView.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDActionCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDActionCellView.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDExampleDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDExampleDefine.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDExampleDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDExampleDefine.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDMainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDMainViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Menu/BUDMainViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/BUDBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/BUDBase64.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/BUDBase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/BUDBase64.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/NSString+Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/NSString+Json.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/NSString+Json.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/NSString+Json.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/NSString+LocalizedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/NSString+LocalizedString.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/NSString+LocalizedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/NSString+LocalizedString.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/UIColor+DarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/UIColor+DarkMode.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/UIColor+DarkMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/UIColor+DarkMode.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/UIView+Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/UIView+Draw.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/UIView+Draw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/Category/UIView+Draw.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/FPSLabel/RRFPSBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/FPSLabel/RRFPSBar.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/FPSLabel/RRFPSBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/FPSLabel/RRFPSBar.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/ScanFun/BUDSanWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/ScanFun/BUDSanWebViewController.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/App/Until/ScanFun/BUDSanWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/App/Until/ScanFun/BUDSanWebViewController.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/DevInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/DevInfo.plist -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Info.plist -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/PrefixHeader.pch -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/1111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/1111.html -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/adPlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/adPlay.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/adPlay.imageset/adPlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/adPlay.imageset/adPlay.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/comment.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/comment.imageset/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/comment.imageset/comment.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/corner.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/corner.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/corner.imageset/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/corner.imageset/corner.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_CustomEvent.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_CustomEvent.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_CustomEvent.imageset/demo_CustomEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_CustomEvent.imageset/demo_CustomEvent.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_native.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_native.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_native.imageset/demo_native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_native.imageset/demo_native.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_normal.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_normal.imageset/demo_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_normal.imageset/demo_normal.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_setting.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_setting.imageset/demo_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_setting.imageset/demo_setting.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_video.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_video.imageset/demo_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/demo_video.imageset/demo_video.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/draw_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/draw_back.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/draw_back.imageset/draw_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/draw_back.imageset/draw_back.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/feedClose.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/feedClose.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/feedClose.imageset/feedClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/feedClose.imageset/feedClose.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/forward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/forward.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/forward.imageset/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/forward.imageset/forward.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/head.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/head.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/head.imageset/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/head.imageset/head.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/like.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/like.imageset/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/like.imageset/like.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/nativeDislike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/nativeDislike.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/nativeDislike.imageset/nativeDislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/nativeDislike.imageset/nativeDislike.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/nextDislike.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/nextDislike.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/nextDislike.imageset/nextDislike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/nextDislike.imageset/nextDislike.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/refresh.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/refresh.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/refresh.imageset/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/refresh.imageset/refresh.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/shuaxin.imageset/shuaxin@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/simulateBannerFeed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/simulateBannerFeed.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/simulateBannerFeed.imageset/simulateBannerFeed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/Assets.xcassets/simulateBannerFeed.imageset/simulateBannerFeed.jpg -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/drawVideo/feedInfo.cactus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/drawVideo/feedInfo.cactus -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/index1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/index1.css -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/index1.html -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/index1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/index1.js -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Resource/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Resource/music.mp3 -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Support/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Support/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Support/ja.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/ja.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Support/ko.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/ko.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Support/main.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/Support/zh-Hans.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/Support/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/en.lproj/BUDemoLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/en.lproj/BUDemoLanguage.strings -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/ja.lproj/BUDemoLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/ja.lproj/BUDemoLanguage.strings -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/ko.lproj/BUDemoLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/ko.lproj/BUDemoLanguage.strings -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/BUDemo/zh-Hans.lproj/BUDemoLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/BUDemo/zh-Hans.lproj/BUDemoLanguage.strings -------------------------------------------------------------------------------- /Demo/InternationalDemo/Objective-C/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Objective-C/Podfile -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/.DS_Store -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-20-ipad.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-20@2x-ipad.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29-ipad.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29@2x-ipad.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/Category/UIColor+DarkMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/Category/UIColor+DarkMode.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/Category/UIColor+DarkMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/Category/UIColor+DarkMode.m -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/MainPage/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/MainPage/ViewController.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDAppOpenAdViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDAppOpenAdViewController.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDBannerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDBannerViewController.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDCustomEventAdapterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDCustomEventAdapterController.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDInterstitialViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDInterstitialViewController.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDNativeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDNativeView.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDNativeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDNativeViewController.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDRewardVideoAdViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/ExampleApp/SubPage/BUDRewardVideoAdViewController.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/Info.plist -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/SceneDelegate.swift -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/BUADVADemo_Swift/SwiftSocket-Brigding-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/BUADVADemo_Swift/SwiftSocket-Brigding-Header.h -------------------------------------------------------------------------------- /Demo/InternationalDemo/Swift/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/InternationalDemo/Swift/Podfile -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/.gitignore -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcodeproj/xcuserdata/changu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcodeproj/xcuserdata/changu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/AdmobAdapterDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/AdmobAdapterDemo-Bridging-Header.h -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/40-1.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/AppIcon.appiconset/playstore.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/CustomTableViewCell/NativeAdCellTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/CustomTableViewCell/NativeAdCellTableViewCell.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/CustomTableViewCell/NativeAdCellTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/CustomTableViewCell/NativeAdCellTableViewCell.xib -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/CustomTableViewCell/TemplateNativeAdCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/CustomTableViewCell/TemplateNativeAdCell.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/CustomTableViewCell/TemplateNativeAdCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/CustomTableViewCell/TemplateNativeAdCell.xib -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/FullScreenVideoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/FullScreenVideoViewController.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/Info.plist -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/NativeAdsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/NativeAdsViewController.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/RewardedVideoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/RewardedVideoViewController.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/TemplateBannerAdsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/TemplateBannerAdsViewController.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/TemplateNativeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/TemplateNativeViewController.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemo/ViewController.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemoTests/Info.plist -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemoTests/PangleQuickStartDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemoTests/PangleQuickStartDemoTests.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemoUITests/Info.plist -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/PangleQuickStartDemoUITests/PangleQuickStartDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/PangleQuickStartDemoUITests/PangleQuickStartDemoUITests.swift -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Podfile -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Podfile.lock -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/en/1-integrate_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/en/1-integrate_en.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/en/2-naive_ad_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/en/2-naive_ad_en.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/en/3-reward_video_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/en/3-reward_video_en.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/en/4-fullscreen_video_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/en/4-fullscreen_video_en.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/en/5-template_banner_ad_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/en/5-template_banner_ad_en.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/en/6-mediation_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/en/6-mediation_en.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/1-integrate_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/1-integrate_ja.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/2-naive_ad_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/2-naive_ad_ja.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/3-reward_video_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/3-reward_video_ja.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/4-fullscreen_video_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/4-fullscreen_video_ja.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/5-template_banner_ad_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/5-template_banner_ad_ja.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/6-mediation_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/ja/6-mediation_ja.md -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/fullscreen_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/fullscreen_add.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/fullscreen_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/fullscreen_set.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/native_origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/native_origin.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/native_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/native_template.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/reward_video_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/reward_video_add.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/reward_video_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/reward_video_set.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/template320_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/template320_add.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/template_banner_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/template_banner_add.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/template_banner_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/Quick-Start-Manual/pics/template_banner_set.png -------------------------------------------------------------------------------- /Demo/PangleQuickStartDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/PangleQuickStartDemo/README.md -------------------------------------------------------------------------------- /Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/Demo/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytedance/Bytedance-UnionAD/HEAD/README.md --------------------------------------------------------------------------------