AATKit Unity Integration
Release Notes
  • Start
    • Setup
    • Initialization
    • App Tracking Transparency
    • Google Mobile Ads SDK
    • Consent
      • Managed Consent
      • Vendor Consent
      • Simple Consent
  • Formats
    • Banner
    • Fullscreen (Interstitial)
    • Rewarded Video
  • Other
    • AATKitSettings Asset
    • AATKitPlaceholderManager
    • Closing the Application
    • Unity 2019.3.X Potential Issue
    • Reference
      • AATKitBinding
        • Properties
          • ScriptLogEnabled
        • Methods
          • Init
          • ReconfigureUsingConfiguration
          • SetDebugEnabled
          • SetDebugShakeEnabled
          • EnableCreativeHistory
          • GetVersion
          • GetDebugInfo
          • IsNetworkEnabled
          • SetNetworkEnabled
          • ShowConsentDialogIfNeeded
          • ShowConsentDialogIfNeededOrRejected
          • EditConsent
          • ReloadConsent
          • IsConsentOptIn
          • SetUserTargeting
          • CreatePlacement
          • CreatePlacement
          • CreateAppOpenAdPlacement
          • StartPlacementAutoReload
          • StopPlacementAutoReload
          • ReloadPlacement
          • ReloadPlacementForced
          • HasAdForPlacement
          • SetImpressionAction
          • AddPlacementToView
          • RemovePlacementFromView
          • StartPlacementAutoReloadWithSeconds
          • SetPlacementAlignment
          • SetPlacementAlignmentWithOffsetInPixels
          • SetPlacementAlignmentWithOffset
          • SetPlacementPositionInPixels
          • SetPlacementPosition
          • SetPlacementContentGravity
          • ShowPlacement
          • SetReAddingPlacementOnResumeEnabled
          • IsFrequencyCapReachedForPlacement
          • MuteVideoAds
          • SetMultiSizeAlignment
          • SetMultiSizeAlignmentWithOffset
          • SetMultiSizePosition
          • AddAdNetworkForKeywordTargeting
          • RemoveAdNetworkForKeywordTargeting
          • SetIsChildDirected
          • SetTargetingInfo
          • SetTargetingInfo (for placement)
          • SetMultiContentTargetingUrls
          • SetContentTargetingUrl
          • SetContentTargetingUrl (for placement)
          • GetScale
          • GetNativeScale
          • SetCollapsibleBannerOptions
          • ConfigureDebugScreen
          • GetAdInfo
        • Delegates
          • OnHaveAd
          • OnHaveAdOnMultiSizeBanner
          • OnNoAd
          • OnPauseForAd
          • OnResumeAfterAd
          • OnUserEarnedIncentive
          • OnObtainedAdRules
          • OnManagedConsentNeedsUserInterface
          • OnManagedConsentCMPFinished
          • OnManagedConsentCMPFailedToLoad
          • OnManagedConsentCMPFailedToShow
      • Other
        • AATKitConfiguration
        • AATKitConsent
        • AATKitDebugScreenConfiguration
        • AATKitAdNetworkOptions
          • AATKitAdMobOptions
          • AATKitAppNexusOptions
          • AATKitDFPOptions
          • AATKitFeedAdOptions
          • AATKitDatonomyOptions
          • AATKitGraviteRTBOptions
          • AATKitSuperAwesomeOptions
            • AATKitSuperAwesomeBannerOptions
            • AATKitSuperAwesomeInterstitialAdOptions
            • AATKitSuperAwesomeRewardedVideOptions
          • AATKitDisplayIOOptions
        • IAATKitStatisticsListener
Powered by GitBook
On this page
  1. Formats

Banner

Integrate banners

PreviousFormatsNextFullscreen (Interstitial)

Last updated 1 year ago

Usage

Plugin supports sticky banner ads displayed on the top of the user interface. Every banner component has to have unique placement name. Please note that the placement name has to be constant after once defined and cannot change with every app restart. Also you have to choose the size of the placement. To check available sizes, please see method documentation. To reload new ad once, use method. If you want to let AATKit reload ads automatically, use and methods. See the example of creating banner 320x53 below.

AATKitBinding.CreatePlacement ("YourPlacementName", AATKitBinding.PlacementSize.Banner320x53);
AATKitBinding.StartPlacementAutoReload ("YourPlacementName");

To set position of the banner ad, you can use , and methods. The code below will place banner on the bottom-center position on the screen.

AATKitBinding.SetPlacementAlignment("YourPlacementName", BannerAlignment.BottomCenter);

createPlacement
reloadPlacement
startPlacementAutoreload
stopPlacementAutoreload
setPlacementAlignment
setPlacementAlignmentWithOffset
setPlacementPosition