gitextract_zu2obygx/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── samples/ ├── android/ │ ├── .gitignore │ ├── AdUnitsSample/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── build.gradle │ │ ├── libs/ │ │ │ ├── AudienceNetwork.aar │ │ │ └── DebugSettings.aar │ │ ├── proguard-rules.pro │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── AndroidManifestVariables.xml │ │ ├── java/ │ │ │ └── com/ │ │ │ └── facebook/ │ │ │ └── samples/ │ │ │ └── AdUnitsSample/ │ │ │ ├── AdUnitsSampleActivity.java │ │ │ ├── AdUnitsSampleApplication.java │ │ │ ├── AdUnitsSampleType.java │ │ │ ├── AudienceNetworkInitializeHelper.java │ │ │ ├── SampleListActivity.java │ │ │ ├── SplashActivity.java │ │ │ ├── adapters/ │ │ │ │ ├── NativeAdRecyclerAdapter.java │ │ │ │ └── SampleAdapter.java │ │ │ ├── fragments/ │ │ │ │ ├── BannerFragment.java │ │ │ │ ├── InterstitialFragment.java │ │ │ │ ├── MultiLoadInterstitialFragment.java │ │ │ │ ├── NativeAdHScrollFragment.java │ │ │ │ ├── NativeAdRecyclerFragment.java │ │ │ │ ├── NativeAdSampleFragment.java │ │ │ │ ├── NativeAdTemplateFragment.java │ │ │ │ ├── NativeBannerAdFragment.java │ │ │ │ ├── NativeBannerAdTemplateFragment.java │ │ │ │ ├── RectangleFragment.java │ │ │ │ ├── RewardedInterstitialFragment.java │ │ │ │ └── RewardedVideoFragment.java │ │ │ ├── models/ │ │ │ │ └── RecyclerPostItem.java │ │ │ └── thirdparty/ │ │ │ └── DividerItemDecoration/ │ │ │ └── DividerItemDecoration.java │ │ └── res/ │ │ ├── layout/ │ │ │ ├── activity_ad_sample.xml │ │ │ ├── activity_sample_list.xml │ │ │ ├── activity_splash.xml │ │ │ ├── fragment_banner.xml │ │ │ ├── fragment_interstitial.xml │ │ │ ├── fragment_multi_load_interstitial.xml │ │ │ ├── fragment_native_ad_hscroll.xml │ │ │ ├── fragment_native_ad_recycler.xml │ │ │ ├── fragment_native_ad_sample.xml │ │ │ ├── fragment_native_ad_template.xml │ │ │ ├── fragment_native_banner_ad.xml │ │ │ ├── fragment_native_banner_ad_template.xml │ │ │ ├── fragment_rectangle.xml │ │ │ ├── fragment_rewarded_interstitial.xml │ │ │ ├── fragment_rewarded_video.xml │ │ │ ├── list_item_section.xml │ │ │ ├── native_ad_unit.xml │ │ │ ├── native_banner_ad_unit.xml │ │ │ └── recycler_post_item.xml │ │ ├── layout-land/ │ │ │ └── fragment_rectangle.xml │ │ ├── menu/ │ │ │ └── ad_units_sample_menu.xml │ │ ├── values/ │ │ │ ├── layouts.xml │ │ │ └── strings.xml │ │ ├── values-large/ │ │ │ └── layout.xml │ │ ├── values-sw600dp/ │ │ │ └── layout.xml │ │ └── xml/ │ │ ├── locales_config.xml │ │ └── network_security_config.xml │ ├── KotlinAdUnitsSample/ │ │ ├── .gitignore │ │ ├── KotlinAdUnitsSample/ │ │ │ └── .gitignore │ │ ├── LICENSE │ │ ├── build.gradle │ │ ├── libs/ │ │ │ ├── AudienceNetwork.aar │ │ │ └── DebugSettings.aar │ │ ├── proguard-rules.pro │ │ └── src/ │ │ └── main/ │ │ ├── AndroidManifest.xml │ │ ├── java/ │ │ │ └── com/ │ │ │ └── facebook/ │ │ │ └── samples/ │ │ │ └── adunitssamplekotlin/ │ │ │ ├── AdUnitsSampleActivity.kt │ │ │ ├── AdUnitsSampleApplication.kt │ │ │ ├── AdUnitsSampleType.kt │ │ │ ├── AudienceNetworkInitializeHelper.kt │ │ │ ├── SampleListActivity.kt │ │ │ ├── SplashActivity.kt │ │ │ ├── adapters/ │ │ │ │ ├── NativeAdRecyclerAdapter.kt │ │ │ │ └── SampleAdapter.kt │ │ │ ├── fragments/ │ │ │ │ ├── BannerFragment.kt │ │ │ │ ├── InterstitialFragment.kt │ │ │ │ ├── NativeAdHScrollFragment.kt │ │ │ │ ├── NativeAdRecyclerFragment.kt │ │ │ │ ├── NativeAdSampleFragment.kt │ │ │ │ ├── NativeAdTemplateFragment.kt │ │ │ │ ├── NativeBannerAdFragment.kt │ │ │ │ ├── NativeBannerAdTemplateFragment.kt │ │ │ │ ├── RectangleFragment.kt │ │ │ │ ├── RewardedInterstitialFragment.kt │ │ │ │ ├── RewardedVideoFragment.kt │ │ │ │ └── SampleListFragment.kt │ │ │ └── models/ │ │ │ └── RecyclerPostItem.kt │ │ └── res/ │ │ ├── layout/ │ │ │ ├── activity_ad_sample.xml │ │ │ ├── activity_sample_list.xml │ │ │ ├── activity_splash.xml │ │ │ ├── fragment_banner.xml │ │ │ ├── fragment_interstitial.xml │ │ │ ├── fragment_native_ad_hscroll.xml │ │ │ ├── fragment_native_ad_recycler.xml │ │ │ ├── fragment_native_ad_sample.xml │ │ │ ├── fragment_native_ad_template.xml │ │ │ ├── fragment_native_banner_ad.xml │ │ │ ├── fragment_native_banner_ad_template.xml │ │ │ ├── fragment_rectangle.xml │ │ │ ├── fragment_rewarded_interstitial.xml │ │ │ ├── fragment_rewarded_video.xml │ │ │ ├── list_item_section.xml │ │ │ ├── native_ad_unit.xml │ │ │ ├── native_banner_ad_unit.xml │ │ │ └── recycler_post_item.xml │ │ ├── menu/ │ │ │ └── ad_units_sample_menu.xml │ │ └── values/ │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ios/ │ ├── AdUnitsSample/ │ │ ├── .gitignore │ │ ├── AdUnitsSample/ │ │ │ ├── AdUnitsSample-Prefix.pch │ │ │ ├── AdUnitsSample.entitlements │ │ │ ├── AdUnitsSampleStoryboard.storyboard │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── BannerViewController.h │ │ │ ├── BannerViewController.m │ │ │ ├── CollectionViewController.h │ │ │ ├── CollectionViewController.m │ │ │ ├── DebugLogsViewController.h │ │ │ ├── DebugLogsViewController.m │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── InfoPlist.strings │ │ │ ├── InstreamViewController.h │ │ │ ├── InstreamViewController.m │ │ │ ├── InterstitialViewController.h │ │ │ ├── InterstitialViewController.m │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── MediumRectViewController.h │ │ │ ├── MediumRectViewController.m │ │ │ ├── MenuTableViewController.h │ │ │ ├── MenuTableViewController.m │ │ │ ├── NativeAdTemplateViewController.h │ │ │ ├── NativeAdTemplateViewController.m │ │ │ ├── NativeBannerAdTemplateViewController.h │ │ │ ├── NativeBannerAdTemplateViewController.m │ │ │ ├── NativeBannerViewController.h │ │ │ ├── NativeBannerViewController.m │ │ │ ├── NativeViewController.h │ │ │ ├── NativeViewController.m │ │ │ ├── NavigationController.h │ │ │ ├── NavigationController.m │ │ │ ├── RewardedVideoViewController.h │ │ │ ├── RewardedVideoViewController.m │ │ │ ├── ScrollViewController.h │ │ │ ├── ScrollViewController.m │ │ │ ├── SettingsLogLevelCell.h │ │ │ ├── SettingsLogLevelCell.m │ │ │ ├── SettingsSandboxCell.h │ │ │ ├── SettingsSandboxCell.m │ │ │ ├── SettingsTableViewController.h │ │ │ ├── SettingsTableViewController.m │ │ │ ├── SettingsTestAdCell.h │ │ │ ├── SettingsTestAdCell.m │ │ │ ├── SettingsTestModeCell.h │ │ │ ├── SettingsTestModeCell.m │ │ │ ├── TableViewController.h │ │ │ ├── TableViewController.m │ │ │ └── main.m │ │ ├── AdUnitsSample.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── AdUnitsSample.xcscheme │ │ ├── AdUnitsSample.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Podfile │ │ ├── ReadMe.txt │ │ └── VERSION.bzl │ ├── FANSample/ │ │ ├── .gitignore │ │ ├── FANSample/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── fan.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Extensions/ │ │ │ │ ├── NSObject+ClassName.swift │ │ │ │ ├── UIView+NibContent.swift │ │ │ │ └── UIViewController+Storyboard.swift │ │ │ ├── Info.plist │ │ │ ├── Samples/ │ │ │ │ ├── BannerSampleViewController.swift │ │ │ │ ├── FullscreenAdSampleViewController.swift │ │ │ │ ├── Native/ │ │ │ │ │ ├── NativeAdScreenViewController.swift │ │ │ │ │ ├── NativeAdView.swift │ │ │ │ │ └── NativeAdView.xib │ │ │ │ ├── NativeBanner/ │ │ │ │ │ ├── NativeBannerAdScreenViewController.swift │ │ │ │ │ ├── NativeBannerAdView.swift │ │ │ │ │ └── NativeBannerAdView.xib │ │ │ │ ├── NativeBannerTemplate/ │ │ │ │ │ ├── NativeBannerTemplateAdScreenViewController.swift │ │ │ │ │ └── NativeBannerTemplateAdView.swift │ │ │ │ └── NativeTemplate/ │ │ │ │ ├── NativeTemplateAdView.swift │ │ │ │ └── NativeTemplateScreenViewController.swift │ │ │ ├── SamplesViewController.swift │ │ │ ├── SceneDelegate.swift │ │ │ ├── Settings/ │ │ │ │ ├── Picker/ │ │ │ │ │ ├── PickerTableViewCell.swift │ │ │ │ │ ├── PickerTableViewCell.xib │ │ │ │ │ └── ViewModels.swift │ │ │ │ ├── SettingScreenViewController.swift │ │ │ │ └── TestMode/ │ │ │ │ ├── TestModeTableViewCell.swift │ │ │ │ └── TestModeTableViewCell.xib │ │ │ └── Utils/ │ │ │ ├── AdUtils.swift │ │ │ ├── BottomBarView.swift │ │ │ ├── BottomBarView.xib │ │ │ └── NavigationController.swift │ │ ├── FANSample.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── FANSample.xcscheme │ │ ├── FANSample.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Podfile │ │ └── README.md │ └── README.md └── python/ └── ReportingAPISamples/ ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── PATENTS.md ├── README.md ├── adnw_examples.py ├── adnw_exception.py ├── adnw_params.py ├── adnw_requests.py ├── adnw_response.py └── adnw_utils.py