├── .gitignore ├── AdColony.xcframework ├── Headers ├── Info.plist ├── ios-arm64_armv7 │ └── AdColony.framework │ │ ├── AdColony │ │ ├── Headers │ │ ├── AdColony.h │ │ ├── AdColonyAdOptions.h │ │ ├── AdColonyAdRequestError.h │ │ ├── AdColonyAdSize.h │ │ ├── AdColonyAdView.h │ │ ├── AdColonyAdViewDelegate.h │ │ ├── AdColonyAppOptions.h │ │ ├── AdColonyEventTracker.h │ │ ├── AdColonyInterstitial.h │ │ ├── AdColonyInterstitialDelegate.h │ │ ├── AdColonyOptions.h │ │ ├── AdColonyPublic.h │ │ ├── AdColonyTypes.h │ │ ├── AdColonyUserMetadata.h │ │ └── AdColonyZone.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature └── ios-arm64_i386_x86_64-simulator │ └── AdColony.framework │ ├── AdColony │ ├── Headers │ ├── AdColony.h │ ├── AdColonyAdOptions.h │ ├── AdColonyAdRequestError.h │ ├── AdColonyAdSize.h │ ├── AdColonyAdView.h │ ├── AdColonyAdViewDelegate.h │ ├── AdColonyAppOptions.h │ ├── AdColonyEventTracker.h │ ├── AdColonyInterstitial.h │ ├── AdColonyInterstitialDelegate.h │ ├── AdColonyOptions.h │ ├── AdColonyPublic.h │ ├── AdColonyTypes.h │ ├── AdColonyUserMetadata.h │ └── AdColonyZone.h │ ├── Info.plist │ ├── Modules │ └── module.modulemap │ └── _CodeSignature │ ├── CodeDirectory │ ├── CodeRequirements │ ├── CodeRequirements-1 │ ├── CodeResources │ └── CodeSignature ├── AdNetworks.csv ├── CHANGELOG.md ├── README.md ├── SampleApps ├── ObjC │ ├── AdColonyBasic │ │ ├── AdColonyBasic.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ ├── AdColonyBasic.xccheckout │ │ │ │ ├── AdColonyBasic.xcscmblueprint │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── AdColonyBasic │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── BannersViewController.h │ │ │ ├── BannersViewController.m │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-interstitial-100.png │ │ │ │ ├── icon-interstitial-1024.png │ │ │ │ ├── icon-interstitial-114.png │ │ │ │ ├── icon-interstitial-120-1.png │ │ │ │ ├── icon-interstitial-120.png │ │ │ │ ├── icon-interstitial-144.png │ │ │ │ ├── icon-interstitial-167.png │ │ │ │ ├── icon-interstitial-29-1.png │ │ │ │ ├── icon-interstitial-29.png │ │ │ │ ├── icon-interstitial-40.png │ │ │ │ ├── icon-interstitial-50.png │ │ │ │ ├── icon-interstitial-57.png │ │ │ │ ├── icon-interstitial-58-1.png │ │ │ │ ├── icon-interstitial-58.png │ │ │ │ ├── icon-interstitial-72.png │ │ │ │ ├── icon-interstitial-76.png │ │ │ │ ├── icon-interstitial-80-1.png │ │ │ │ ├── icon-interstitial-80.png │ │ │ │ ├── icon-interstitial-87.png │ │ │ │ ├── icon-interstitial-tablet@2x.png │ │ │ │ └── icon-interstitial@3x.png │ │ │ ├── Background.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bg@1x.png │ │ │ │ ├── bg@2x-1.png │ │ │ │ └── bg@2x.png │ │ │ ├── BannerButton-Press.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn-banner-pressed@1x.png │ │ │ │ ├── btn-banner-pressed@2x.png │ │ │ │ └── btn-banner-pressed@3x.png │ │ │ ├── BannerButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn-banner@1x.png │ │ │ │ ├── btn-banner@2x.png │ │ │ │ └── btn-banner@3x.png │ │ │ ├── Button-Press.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn-interstial-press@2x-1.png │ │ │ │ ├── btn-interstial-press@2x.png │ │ │ │ └── btn-interstitial-press@3x.png │ │ │ ├── Button.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn-interstitial@2x-1.png │ │ │ │ ├── btn-interstitial@2x.png │ │ │ │ └── btn-interstitial@3x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── default-1242x2208.png │ │ │ │ ├── default-2208x1242-1.png │ │ │ │ ├── default-480h-portrait@1x.png │ │ │ │ ├── default-480h-portrait@2x.png │ │ │ │ ├── default-567h-portrait@2x-1.png │ │ │ │ ├── default-567h-portrait@2x.png │ │ │ │ ├── default-750x1334-1.png │ │ │ │ ├── default-ipad-landscape@1x-1.png │ │ │ │ ├── default-ipad-landscape@1x-status-bar.png │ │ │ │ ├── default-ipad-landscape@1x.png │ │ │ │ ├── default-ipad-landscape@2x-1.png │ │ │ │ ├── default-ipad-landscape@2x-status-bar.png │ │ │ │ ├── default-ipad-landscape@2x.png │ │ │ │ ├── default-ipad-portrait@1x-1.png │ │ │ │ ├── default-ipad-portrait@1x-status-bar 1.35.29 PM.png │ │ │ │ ├── default-ipad-portrait@1x.png │ │ │ │ ├── default-ipad-portrait@2x-1.png │ │ │ │ ├── default-ipad-portrait@2x-status-bar.png │ │ │ │ ├── default-ipad-portrait@2x.png │ │ │ │ └── default-portrait@2x.png │ │ │ ├── LaunchScreenImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── launch-screen@1x.png │ │ │ │ ├── launch-screen@2x-1.png │ │ │ │ └── launch-screen@2x.png │ │ │ ├── Logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── logo-312x80-1.png │ │ │ │ ├── logo-312x80-2.png │ │ │ │ └── logo-312x80.png │ │ │ ├── Text-Banner.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── text-banners@1x.png │ │ │ │ ├── text-banners@2x.png │ │ │ │ └── text-banners@3x.png │ │ │ └── Text.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── text-interstitial@2x-1.png │ │ │ │ ├── text-interstitial@2x.png │ │ │ │ └── text-interstitial@3x.png │ │ │ ├── Info.plist │ │ │ ├── Settings.h │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ └── AdColonyV4VC │ │ ├── AdColonyV4VC.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── AdColonyV4VC.xcscheme │ │ └── AdColonyV4VC │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-interstitial-167.png │ │ │ ├── icon-v4vc-100.png │ │ │ ├── icon-v4vc-1024.png │ │ │ ├── icon-v4vc-114.png │ │ │ ├── icon-v4vc-120-1.png │ │ │ ├── icon-v4vc-120.png │ │ │ ├── icon-v4vc-144.png │ │ │ ├── icon-v4vc-152.png │ │ │ ├── icon-v4vc-29-1.png │ │ │ ├── icon-v4vc-29.png │ │ │ ├── icon-v4vc-40.png │ │ │ ├── icon-v4vc-50.png │ │ │ ├── icon-v4vc-57.png │ │ │ ├── icon-v4vc-58-1.png │ │ │ ├── icon-v4vc-58.png │ │ │ ├── icon-v4vc-72.png │ │ │ ├── icon-v4vc-76.png │ │ │ ├── icon-v4vc-80-1.png │ │ │ ├── icon-v4vc-80.png │ │ │ ├── icon-v4vc-87.png │ │ │ └── icon-v4vc@3x.png │ │ ├── Background.imageset │ │ │ ├── Contents.json │ │ │ ├── bg@1x.png │ │ │ ├── bg@2x-1.png │ │ │ └── bg@2x.png │ │ ├── Button-Press.imageset │ │ │ ├── Contents.json │ │ │ ├── btn-v4vc-press@2x-1.png │ │ │ ├── btn-v4vc-press@2x.png │ │ │ └── btn-v4vc-press@3x.png │ │ ├── Button.imageset │ │ │ ├── Contents.json │ │ │ ├── btn-v4vc@2x-1.png │ │ │ ├── btn-v4vc@2x.png │ │ │ └── btn-v4vc@3x.png │ │ ├── Coin.imageset │ │ │ ├── Contents.json │ │ │ ├── icon-coin@2x-1.png │ │ │ ├── icon-coin@2x.png │ │ │ └── icon-coin@3x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── default-1242x2208.png │ │ │ ├── default-2208x1242.png │ │ │ ├── default-320x480.png │ │ │ ├── default-640x1136-1.png │ │ │ ├── default-640x1136.png │ │ │ ├── default-640x960-1.png │ │ │ ├── default-640x960.png │ │ │ ├── default-750x1334.png │ │ │ ├── default-ipad-1024x748.png │ │ │ ├── default-ipad-1024x768.png │ │ │ ├── default-ipad-1536x2008.png │ │ │ ├── default-ipad-1536x2048-1.png │ │ │ ├── default-ipad-1536x2048.png │ │ │ ├── default-ipad-2048x1496.png │ │ │ ├── default-ipad-2048x1536-1.png │ │ │ ├── default-ipad-2048x1536.png │ │ │ ├── default-ipad-768x1004.png │ │ │ ├── default-ipad-768x1024-1.png │ │ │ ├── default-ipad-768x1024.png │ │ │ └── default-ipad-landscape@1x.png │ │ ├── LaunchScreenImage.imageset │ │ │ ├── Contents.json │ │ │ ├── launch-screen@1x.png │ │ │ ├── launch-screen@2x-1.png │ │ │ └── launch-screen@2x.png │ │ └── Text.imageset │ │ │ ├── Contents.json │ │ │ ├── text-v4vc@2x-1.png │ │ │ ├── text-v4vc@2x.png │ │ │ └── text-v4vc@3x.png │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── Swift │ ├── AdColonyBasic │ ├── AdColonyBasic.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── AdColonyBasic.xcscheme │ └── AdColonyBasic │ │ ├── AdColonyBasic-Bridging-Header.h │ │ ├── AppDelegate.swift │ │ ├── BannersViewController.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Constants.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-interstitial-1024.png │ │ │ ├── icon-interstitial-120-1.png │ │ │ ├── icon-interstitial-120.png │ │ │ ├── icon-interstitial-29.png │ │ │ ├── icon-interstitial-40.png │ │ │ ├── icon-interstitial-58-1.png │ │ │ ├── icon-interstitial-58.png │ │ │ ├── icon-interstitial-76.png │ │ │ ├── icon-interstitial-80-1.png │ │ │ ├── icon-interstitial-80.png │ │ │ ├── icon-interstitial-83.5@2x.png │ │ │ ├── icon-interstitial-87.png │ │ │ ├── icon-interstitial-tablet@2x.png │ │ │ └── icon-interstitial@3x.png │ │ ├── Background.imageset │ │ │ ├── Contents.json │ │ │ ├── bg@1x.png │ │ │ ├── bg@2x-1.png │ │ │ └── bg@2x.png │ │ ├── Button-Press.imageset │ │ │ ├── Contents.json │ │ │ ├── btn-interstial-press@2x-1.png │ │ │ ├── btn-interstial-press@2x.png │ │ │ └── btn-interstitial-press@3x.png │ │ ├── Button.imageset │ │ │ ├── Contents.json │ │ │ ├── btn-interstitial@2x-1.png │ │ │ ├── btn-interstitial@2x.png │ │ │ └── btn-interstitial@3x.png │ │ ├── ButtonBanners-Press.imageset │ │ │ ├── Contents.json │ │ │ ├── btn-banner-pressed@1x.png │ │ │ ├── btn-banner-pressed@2x.png │ │ │ └── btn-banner-pressed@3x.png │ │ ├── ButtonBanners.imageset │ │ │ ├── Contents.json │ │ │ ├── btn-banner@1x.png │ │ │ ├── btn-banner@2x.png │ │ │ └── btn-banner@3x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── default-480h-portrait@2x.png │ │ │ ├── default-567h-portrait@2x.png │ │ │ ├── default-667h-portrait@2x.png │ │ │ ├── default-736-landscape@2x.png │ │ │ ├── default-736-portrait@2x.png │ │ │ ├── default-ipad-landscape@1x.png │ │ │ ├── default-ipad-landscape@2x-2.png │ │ │ ├── default-ipad-portrait@1x.png │ │ │ └── default-ipad-portrait@2x-2.png │ │ ├── LaunchScreenImage.imageset │ │ │ ├── Contents.json │ │ │ ├── launch-screen@1x.png │ │ │ ├── launch-screen@2x-1.png │ │ │ └── launch-screen@2x.png │ │ ├── Text-Banners.imageset │ │ │ ├── Contents.json │ │ │ ├── text-banners@1x.png │ │ │ ├── text-banners@2x.png │ │ │ └── text-banners@3x.png │ │ └── Text.imageset │ │ │ ├── Contents.json │ │ │ ├── text-interstitial@2x-1.png │ │ │ ├── text-interstitial@2x.png │ │ │ └── text-interstitial@3x.png │ │ ├── Info.plist │ │ └── ViewController.swift │ └── AdColonyV4VC │ ├── AdColonyV4VC.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── AdColonyV4VC │ ├── AdColonyV4VC-Bridging-Header.h │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-v4vc-1024.png │ │ ├── icon-v4vc-120-1.png │ │ ├── icon-v4vc-120.png │ │ ├── icon-v4vc-152.png │ │ ├── icon-v4vc-29.png │ │ ├── icon-v4vc-40.png │ │ ├── icon-v4vc-58-1.png │ │ ├── icon-v4vc-58.png │ │ ├── icon-v4vc-76.png │ │ ├── icon-v4vc-80-1.png │ │ ├── icon-v4vc-80.png │ │ ├── icon-v4vc-83.5@2x.png │ │ ├── icon-v4vc-87.png │ │ └── icon-v4vc@3x.png │ ├── Background.imageset │ │ ├── Contents.json │ │ ├── bg@1x.png │ │ ├── bg@2x-1.png │ │ └── bg@2x.png │ ├── Button-Press.imageset │ │ ├── Contents.json │ │ ├── btn-v4vc-press@2x-1.png │ │ ├── btn-v4vc-press@2x.png │ │ └── btn-v4vc-press@3x.png │ ├── Button.imageset │ │ ├── Contents.json │ │ ├── btn-v4vc@2x-1.png │ │ ├── btn-v4vc@2x.png │ │ └── btn-v4vc@3x.png │ ├── Coin.imageset │ │ ├── Contents.json │ │ ├── icon-coin@2x-1.png │ │ ├── icon-coin@2x.png │ │ └── icon-coin@3x.png │ ├── Contents.json │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── default-1242x2208.png │ │ ├── default-2208x1242.png │ │ ├── default-640x1136.png │ │ ├── default-640x960.png │ │ ├── default-750x1334.png │ │ ├── default-ipad-1024x768.png │ │ ├── default-ipad-1536x2048.png │ │ ├── default-ipad-2048x1536.png │ │ └── default-ipad-768x1024.png │ ├── LaunchScreenImage.imageset │ │ ├── Contents.json │ │ ├── launch-screen@1x.png │ │ ├── launch-screen@2x-1.png │ │ └── launch-screen@2x.png │ └── Text.imageset │ │ ├── Contents.json │ │ ├── text-v4vc@2x-1.png │ │ ├── text-v4vc@2x.png │ │ └── text-v4vc@3x.png │ ├── Info.plist │ └── ViewController.swift ├── W-9 Form.pdf ├── skadnetworkids.json └── skadnetworkids.xml /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX Metadata 2 | .DS_Store 3 | 4 | # Xcode Builds 5 | DerivedData/ 6 | build/ 7 | 8 | # Xcode User-specific 9 | xcuserdata 10 | -------------------------------------------------------------------------------- /AdColony.xcframework/Headers: -------------------------------------------------------------------------------- 1 | ios-arm64_armv7/AdColony.framework/Headers -------------------------------------------------------------------------------- /AdColony.xcframework/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AvailableLibraries 6 | 7 | 8 | LibraryIdentifier 9 | ios-arm64_armv7 10 | LibraryPath 11 | AdColony.framework 12 | SupportedArchitectures 13 | 14 | arm64 15 | armv7 16 | 17 | SupportedPlatform 18 | ios 19 | 20 | 21 | LibraryIdentifier 22 | ios-arm64_i386_x86_64-simulator 23 | LibraryPath 24 | AdColony.framework 25 | SupportedArchitectures 26 | 27 | arm64 28 | i386 29 | x86_64 30 | 31 | SupportedPlatform 32 | ios 33 | SupportedPlatformVariant 34 | simulator 35 | 36 | 37 | CFBundlePackageType 38 | XFWK 39 | XCFrameworkFormatVersion 40 | 1.0 41 | 42 | 43 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/AdColony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_armv7/AdColony.framework/AdColony -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColony.h: -------------------------------------------------------------------------------- 1 | // 2 | // AdColony.h 3 | // AdColony 4 | // 5 | // Copyright © 2018 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | #import 11 | #import 12 | #import 13 | #import 14 | #import 15 | #import 16 | #import 17 | #import 18 | #import 19 | #import 20 | #import 21 | #import 22 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyAdOptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | /** 7 | AdColonyAdOptions objects are used to set configurable aspects of an ad session, such as third-party network settings, user metadata, etc. 8 | Set the properties below to configure a pre-defined ad option. Note that you can also set arbitrary options using the AdColonyOptions API. 9 | This class is NOT thread safe. 10 | */ 11 | @interface AdColonyAdOptions : AdColonyOptions 12 | 13 | /** @name Properties */ 14 | 15 | /** 16 | @abstract Enables reward dialogs to be shown before an advertisement. 17 | @discussion These popups are disabled by default. 18 | Set this property with a corresponding value of `YES` to enable. 19 | */ 20 | @property (nonatomic) BOOL showPrePopup; 21 | 22 | /** 23 | @abstract Enables reward dialogs to be shown after an advertisement. 24 | @discussion These popups are disabled by default. 25 | Set this property with a corresponding value of `YES` to enable. 26 | */ 27 | @property (nonatomic) BOOL showPostPopup; 28 | 29 | @end 30 | 31 | NS_ASSUME_NONNULL_END 32 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyAdRequestError.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | /** 4 | Typed error for AdColony ad requests. 5 | */ 6 | @interface AdColonyAdRequestError : NSError 7 | 8 | - (nonnull instancetype)init NS_UNAVAILABLE; 9 | 10 | - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder NS_UNAVAILABLE; 11 | 12 | - (nonnull instancetype)initWithDomain:(nonnull NSErrorDomain)domain code:(NSInteger)code userInfo:(nullable NSDictionary *)dict NS_UNAVAILABLE; 13 | 14 | /** 15 | @abstract Zone ID 16 | @discussion ID of the zone that was requested 17 | */ 18 | @property (nonatomic, nonnull, strong, readonly) NSString *zoneId; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyAdSize.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #import 4 | 5 | NS_ASSUME_NONNULL_BEGIN 6 | 7 | /** 8 | @struct AdColonyAdSize 9 | @abstract Size for banner ads 10 | */ 11 | struct AdColonyAdSize { 12 | CGFloat width; 13 | CGFloat height; 14 | }; 15 | 16 | /** AdColony ad size */ 17 | typedef struct AdColonyAdSize AdColonyAdSize; 18 | 19 | /** 20 | @function AdColonyAdSizeMake 21 | @abstract Get a custom AdColonyAdSize 22 | @discussion Use this method if you want to display non-standard ad size banner. Otherwise, use one of the standard size constants. 23 | @param width height for a banner ad. 24 | @param height width for a banner ad. 25 | */ 26 | extern AdColonyAdSize AdColonyAdSizeMake(CGFloat width, CGFloat height); 27 | 28 | /** 29 | @function AdColonyAdSizeFromCGSize 30 | @abstract Get a custom AdColonyAdSize from CGSize. 31 | @discussion Use this method if you want to display non-standard ad size banner. Otherwise, use one of the standard size constants. 32 | @param size The size for a banner ad. 33 | */ 34 | extern AdColonyAdSize AdColonyAdSizeFromCGSize(CGSize size); 35 | 36 | /** 37 | @const kAdColonyAdSizeBanner 38 | @abstract 320 x 50 39 | @discussion The constant for a banner with 320 in width and 50 in height. 40 | */ 41 | extern AdColonyAdSize const kAdColonyAdSizeBanner; 42 | 43 | /** 44 | @const kAdColonyAdSizeMediumRectangle 45 | @abstract 300 x 250 46 | @discussion The constant for a banner with 300 in width and 250 in height. 47 | */ 48 | extern AdColonyAdSize const kAdColonyAdSizeMediumRectangle; 49 | 50 | /** 51 | @const kAdColonyAdSizeLeaderboard 52 | @abstract 728 x 90 53 | @discussion The constant for a banner with 728 in width and 90 in height. 54 | */ 55 | extern AdColonyAdSize const kAdColonyAdSizeLeaderboard; 56 | 57 | /** 58 | @const kAdColonyAdSizeSkyscraper 59 | @abstract 160 x 600 60 | @discussion The constant for a banner with 160 in width and 600 in height. 61 | */ 62 | extern AdColonyAdSize const kAdColonyAdSizeSkyscraper; 63 | 64 | 65 | NS_ASSUME_NONNULL_END 66 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyAdView.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #import 4 | #import 5 | 6 | NS_ASSUME_NONNULL_BEGIN 7 | 8 | /** 9 | AdColonyAdViews is used to display AdColony Banner ads. 10 | */ 11 | @interface AdColonyAdView : UIView 12 | 13 | /** @name Zone */ 14 | 15 | /** 16 | @abstract Represents the unique zone identifier string from which the AdColonyAdView was requested. 17 | @discussion AdColony zone IDs can be created at the [Control Panel](http://clients.adcolony.com). 18 | */ 19 | @property (nonatomic, strong, readonly) NSString *zoneID; 20 | 21 | /** 22 | @abstract Indicates that the AdColonyAdView has been removed from the view hierarchy and should be destroyed. 23 | @discussion The AdColony SDK maintains internal resources when the ad is being displayed. 24 | When this method is called, all internal resources are destroyed and the associated memory is freed. 25 | */ 26 | - (void)destroy; 27 | 28 | @end 29 | 30 | NS_ASSUME_NONNULL_END 31 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyAdViewDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AdColonyAdViewDelegate.h 3 | // adc-ios-sdk 4 | // 5 | // Copyright © 2018 AdColony. All rights reserved. 6 | // 7 | 8 | @class AdColonyAdView; 9 | @class AdColonyAdRequestError; 10 | 11 | /** 12 | * The delegate of an AdColonyAdView object. This delegate receives ad view lifecycle notifications. 13 | */ 14 | @protocol AdColonyAdViewDelegate 15 | 16 | @required 17 | /** 18 | @abstract Did load notification 19 | @discussion Notifies you when ad view has been created, received the ad and is ready to use. Call is dispatched on main thread. 20 | @param adView Loaded ad view 21 | */ 22 | - (void)adColonyAdViewDidLoad:(AdColonyAdView * _Nonnull)adView; 23 | 24 | /** 25 | @abstract No ad notification 26 | @discussion Notifies you when SDK was not able to load the ad for requested zone. Call is dispatched on main thread. 27 | @param error Error with failure explanation 28 | */ 29 | - (void)adColonyAdViewDidFailToLoad:(AdColonyAdRequestError * _Nonnull)error; 30 | 31 | @optional 32 | /** 33 | @abstract Did show notification 34 | @discussion Ad view was added to a view with active window 35 | @param adView Shown ad view 36 | */ 37 | - (void)adColonyAdViewDidShow:(AdColonyAdView * _Nonnull)adView; 38 | 39 | /** 40 | @abstract Application leave notification 41 | @discussion Notifies you when ad view is going to redirect user to content outside of the application. 42 | @param adView The ad view which caused the user to leave the application. 43 | */ 44 | - (void)adColonyAdViewWillLeaveApplication:(AdColonyAdView * _Nonnull)adView; 45 | 46 | /** 47 | @abstract Open fullscreen content notification 48 | @discussion Notifies you when ad view is going to display fullscreen content. Call is dispatched on worker thread. 49 | @param adView Ad view that is going to display fullscreen content. 50 | */ 51 | - (void)adColonyAdViewWillOpen:(AdColonyAdView * _Nonnull)adView; 52 | 53 | /** 54 | @abstract Did close fullscreen content notification 55 | @discussion Notifies you when ad view stopped displaying fullscreen content 56 | @param adView Ad view that stopped displaying fullscreen content 57 | */ 58 | - (void)adColonyAdViewDidClose:(AdColonyAdView * _Nonnull)adView; 59 | 60 | /** 61 | @abstract Received a click notification 62 | @discussion Notifies you when adView receives a click 63 | @param adView Ad view that received a click 64 | */ 65 | - (void)adColonyAdViewDidReceiveClick:(AdColonyAdView * _Nonnull)adView; 66 | 67 | @end 68 | 69 | /** 70 | * The delegate of an AdColonyAdView object. This delegate receives ad view lifecycle notifications. 71 | */ 72 | @protocol AdColonyAdViewAdvancedDelegate 73 | 74 | @required 75 | 76 | /** 77 | @abstract Host view controller request 78 | @discussion Requests hosting view controller when needed if it wasn't provided during ad request. 79 | @param adView The ad view which requests host view controller. 80 | @return view controller that hosts given ad view 81 | */ 82 | - (UIViewController * _Nonnull)adColonyAdViewHostViewController:(AdColonyAdView * _Nonnull)adView; 83 | 84 | @end 85 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyInterstitial.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | @class UIViewController; 6 | 7 | NS_ASSUME_NONNULL_BEGIN 8 | 9 | /** 10 | Ad object returned from a request. This is used to show and receive callbacks once the ad is presented. 11 | */ 12 | @interface AdColonyInterstitial : NSObject 13 | 14 | /** @name Properties */ 15 | 16 | /** 17 | @abstract Interstitial delegate 18 | @discussion Delegate object that receives interstitial lifecycle notifications. 19 | */ 20 | @property (nonatomic, nullable, weak) id delegate __attribute__((deprecated("Deprecated in v4.7.0"))); 21 | 22 | /** 23 | @abstract Represents the unique zone identifier string from which the interstitial was requested. 24 | @discussion AdColony zone IDs can be created at the [Control Panel](http://clients.adcolony.com). 25 | */ 26 | @property (nonatomic, strong, readonly) NSString *zoneID; 27 | 28 | /** 29 | @abstract Indicates whether or not the interstitial has been played or if it has met its expiration time. 30 | @discussion AdColony interstitials become expired as soon as the ad launches or just before they have met their expiration time. 31 | */ 32 | @property (atomic, assign, readonly) BOOL expired; 33 | 34 | /** 35 | @abstract Indicates whether or not the interstitial has audio enabled. 36 | @discussion Leverage this property to determine if the application's audio should be paused while the ad is playing. 37 | */ 38 | @property (nonatomic, assign, readonly) BOOL audioEnabled; 39 | 40 | /** 41 | @abstract Indicates whether or not the interstitial is configured to trigger IAPs. 42 | @discussion Leverage this property to determine if the interstitial is configured to trigger IAPs. 43 | */ 44 | @property (nonatomic, assign, readonly) BOOL iapEnabled; 45 | 46 | 47 | 48 | /** @name Ad Playback */ 49 | 50 | /** 51 | @abstract Triggers a fullscreen ad experience. 52 | @param viewController The view controller on which the interstitial will display itself. 53 | @return Whether the SDK was ready to begin playback. 54 | */ 55 | - (BOOL)showWithPresentingViewController:(UIViewController *)viewController; 56 | 57 | /** 58 | @abstract Cancels the interstitial and returns control back to the application. 59 | @discussion Call this method to cancel the interstitial. 60 | Note that canceling interstitials before they finish will diminish publisher revenue. 61 | */ 62 | - (void)cancel; 63 | 64 | @end 65 | 66 | NS_ASSUME_NONNULL_END 67 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyInterstitialDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | 5 | @class AdColonyInterstitial; 6 | 7 | /** 8 | * The delegate of an AdColonyInterstitial object. This delegate receives interstitial lifecycle notifications. 9 | */ 10 | @protocol AdColonyInterstitialDelegate 11 | 12 | @required 13 | 14 | /** 15 | @abstract Did load notification 16 | @discussion Notifies you when interstitial has been created, received an ad and is ready to use. Call is dispatched on main thread. 17 | @param interstitial Loaded interstitial 18 | */ 19 | - (void)adColonyInterstitialDidLoad:(AdColonyInterstitial * _Nonnull)interstitial; 20 | 21 | /** 22 | @abstract No ad notification 23 | @discussion Notifies you when SDK was not able to load an ad for requested zone. Call is dispatched on main thread. 24 | @param error Error with failure explanation 25 | */ 26 | - (void)adColonyInterstitialDidFailToLoad:(AdColonyAdRequestError * _Nonnull)error; 27 | 28 | @optional 29 | 30 | /** 31 | @abstract Open notification 32 | @discussion Notifies you when interstitial is going to show fullscreen content. Call is dispatched on main thread. 33 | @param interstitial interstitial ad object 34 | */ 35 | - (void)adColonyInterstitialWillOpen:(AdColonyInterstitial * _Nonnull)interstitial; 36 | 37 | /** 38 | @abstract Close notification 39 | @discussion Notifies you when interstitial dismissed fullscreen content. Call is dispatched on main thread. 40 | @param interstitial interstitial ad object 41 | */ 42 | - (void)adColonyInterstitialDidClose:(AdColonyInterstitial * _Nonnull)interstitial; 43 | 44 | /** 45 | @abstract Expire notification 46 | @discussion Notifies you when an interstitial expires and is no longer valid for playback. This does not get triggered when the expired flag is set because it has been viewed. It's recommended to request a new ad within this callback. Call is dispatched on main thread. 47 | @param interstitial interstitial ad object 48 | */ 49 | - (void)adColonyInterstitialExpired:(AdColonyInterstitial * _Nonnull)interstitial; 50 | 51 | /** 52 | @abstract Will leave application notification 53 | @discussion Notifies you when an ad action cause the user to leave application. Call is dispatched on main thread. 54 | @param interstitial interstitial ad object 55 | */ 56 | - (void)adColonyInterstitialWillLeaveApplication:(AdColonyInterstitial * _Nonnull)interstitial; 57 | 58 | /** 59 | @abstract Click notification 60 | @discussion Notifies you when the user taps on the interstitial causing the action to be taken. Call is dispatched on main thread. 61 | @param interstitial interstitial ad object 62 | */ 63 | - (void)adColonyInterstitialDidReceiveClick:(AdColonyInterstitial * _Nonnull)interstitial; 64 | 65 | /** @name Videos For Purchase (V4P) */ 66 | 67 | /** 68 | @abstract IAP opportunity notification 69 | @discussion Notifies you when the ad triggers an IAP opportunity. 70 | @param interstitial interstitial ad object 71 | @param iapProductID IAP product id 72 | @param engagement engagement type 73 | */ 74 | - (void)adColonyInterstitial:(AdColonyInterstitial * _Nonnull)interstitial iapOpportunityWithProductId:(NSString * _Nonnull)iapProductID andEngagement:(AdColonyIAPEngagement)engagement; 75 | 76 | 77 | 78 | 79 | 80 | @end 81 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyOptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | /** 7 | AdColonyOptions is a superclass for all types of AdColonyOptions. 8 | Note that AdColonyOptions classes should never be instantiated directly. 9 | Instead, create one of the subclasses and set options on it using its properties as well as the string-based constants defined in its header file. 10 | */ 11 | @interface AdColonyOptions : NSObject 12 | 13 | /** @name Properties */ 14 | 15 | /** 16 | @abstract Represents an AdColonyUserMetadata object. 17 | @discussion Configure and set this property to improve ad targeting. 18 | @see AdColonyUserMetadata 19 | */ 20 | @property (nonatomic, strong, nullable) AdColonyUserMetadata *userMetadata __attribute__((deprecated("Deprecated in v4.7.0"))); 21 | 22 | /** @name Setting Options */ 23 | 24 | /** 25 | @abstract Sets a supported option. 26 | @discussion Use this method to set a string-based option with an arbitrary, string-based value. 27 | @param option An NSString representing the option. 28 | @param value An NSString used to configure the option. 29 | @return A BOOL indicating whether or not the option was set successfully. 30 | @see AdColonyAppOptions 31 | @see AdColonyAdOptions 32 | */ 33 | - (BOOL)setOption:(NSString *)option withStringValue:(NSString *)value; 34 | 35 | /** 36 | @abstract Sets a supported option. 37 | @discussion Use this method to set a string-based option with an arbitrary, numerial value. 38 | @param option An NSString representing the option. Strings must be 128 characters or less. 39 | @param value An NSNumber used to configure the option. 40 | @return A BOOL indicating whether or not the option was set successfully. 41 | @see AdColonyAppOptions 42 | @see AdColonyAdOptions 43 | */ 44 | - (BOOL)setOption:(NSString *)option withNumericValue:(NSNumber *)value; 45 | 46 | /** @name Option Retrieval */ 47 | 48 | /** 49 | @abstract Returns the string-based option associated with the given key. 50 | @discussion Call this method to obtain the string-based value associated with the given string-based key. 51 | @param key A string-based option key. 52 | @return The string-based value associated with the given key. Returns `nil` if the option has not been set. 53 | @see AdColonyAppOptions 54 | @see AdColonyAdOptions 55 | */ 56 | - (nullable NSString *)getStringOptionWithKey:(NSString *)key; 57 | 58 | /** 59 | @abstract Returns the numerical option associated with the given key. 60 | @discussion Call this method to obtain the numerical value associated with the given string-based key. 61 | @param key A string-based option key. 62 | @return The option value associated with the given key. Returns `nil` if the option has not been set. 63 | @see AdColonyAppOptions 64 | @see AdColonyAdOptions 65 | */ 66 | - (nullable NSNumber *)getNumericOptionWithKey:(NSString *)key; 67 | @end 68 | 69 | NS_ASSUME_NONNULL_END 70 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyTypes.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | /** 6 | Enum representing AdColony ad request error codes 7 | */ 8 | typedef NS_ENUM(NSUInteger, AdColonyRequestError) { 9 | 10 | /** An invalid app id or zone id was specified by the developer or an invalid configuration was received from the server (unlikely). */ 11 | AdColonyRequestErrorInvalidRequest = 0, 12 | 13 | /** The ad was skipped due to the skip interval setting on the control panel. */ 14 | AdColonyRequestErrorSkippedRequest, 15 | 16 | /** The current zone has no ad fill. */ 17 | AdColonyRequestErrorNoFillForRequest, 18 | 19 | /** Either AdColony has not been configured, is still in the process of configuring, is still downloading assets, or is already showing an ad. */ 20 | AdColonyRequestErrorUnready, 21 | 22 | /** This iOS version is no longer supported. */ 23 | AdColonyRequestErrorFeatureUnsupported, 24 | 25 | /** Unexpected result */ 26 | AdColonyRequestErrorUnexpected 27 | }; 28 | 29 | /** 30 | Enum representing in-app purchase (IAP) engagement types 31 | */ 32 | typedef NS_ENUM(NSUInteger, AdColonyIAPEngagement) { 33 | 34 | /** IAP was enabled for the ad, and the user engaged via a dynamic end card (DEC). */ 35 | AdColonyIAPEngagementEndCard = 0, 36 | 37 | /** IAP was enabled for the ad, and the user engaged via an in-vdeo engagement (Overlay). */ 38 | AdColonyIAPEngagementOverlay 39 | }; 40 | 41 | /** 42 | Enum representing supported ad orientations 43 | */ 44 | typedef NS_ENUM(NSInteger, AdColonyOrientation) { 45 | 46 | /** Portrait and upside down */ 47 | AdColonyOrientationPortrait = 0, 48 | 49 | /** Landscape left and landscape right */ 50 | AdColonyOrientationLandscape = 1, 51 | 52 | /** All orientations supported */ 53 | AdColonyOrientationAll = 2 54 | }; 55 | 56 | /** 57 | Enum representing zone types 58 | */ 59 | typedef NS_ENUM(NSInteger, AdColonyZoneType) { 60 | 61 | /** Invalid zone type */ 62 | AdColonyZoneTypeInvalid = -1, 63 | 64 | /** Interstitial zone type */ 65 | AdColonyZoneTypeInterstitial = 0, 66 | 67 | /** Banner zone type */ 68 | AdColonyZoneTypeBanner = 1 69 | }; 70 | 71 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Headers/AdColonyZone.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | /** 7 | AdColonyZone objects aggregate informative data about an AdColony zone such as its unique identifier, its `ADCOLONY_ZONE_TYPE`, etc. 8 | AdColonyZones also provide a block-based handler for zone-level reward events. 9 | Note that you should never instantiate one of these objects directly. You only need to use them when they are passed to you. 10 | */ 11 | @interface AdColonyZone : NSObject 12 | 13 | - (instancetype)init NS_UNAVAILABLE; 14 | 15 | /** @name Zone */ 16 | 17 | /** 18 | @abstract Represents the given zone's unique string identifier. 19 | @discussion AdColony zone IDs can be created at the [Control Panel](http://clients.adcolony.com). 20 | */ 21 | @property (nonatomic, readonly) NSString *identifier; 22 | 23 | /** 24 | @abstract Represents the zone type - interstitial, banner, or native. 25 | @discussion You can set the type for your zones at the [Control Panel](http://clients.adcolony.com). 26 | @see AdColonyZoneType 27 | */ 28 | @property (nonatomic, readonly) AdColonyZoneType type; 29 | 30 | /** 31 | @abstract Indicates whether or not the zone is enabled. 32 | @discussion Sending invalid zone id strings to `configureWithAppID:zoneIDs:options:completion:` will cause this value to be `NO`. 33 | */ 34 | @property (nonatomic, readonly) BOOL enabled; 35 | 36 | /** @name Rewards */ 37 | 38 | /** 39 | @abstract Indicates whether or not the zone is configured for rewards. 40 | @discussion You can configure rewards in your zones at the [Control Panel](http://clients.adcolony.com). 41 | Sending invalid zone id strings to `configureWithAppID:zoneIDs:options:completion:` will cause this value to be `NO`. 42 | */ 43 | @property (nonatomic, readonly) BOOL rewarded; 44 | 45 | /** 46 | @abstract Represents the number of completed ad views required to receive a reward for the given zone. 47 | @discussion This value will be 0 if the given zone is not configured for rewards. 48 | */ 49 | @property (nonatomic, readonly) NSUInteger viewsPerReward; 50 | 51 | /** 52 | @abstract Represents the number of ads that must be watched before a reward is given. 53 | @discussion This value will be 0 if the given zone is not configured for rewards. 54 | */ 55 | @property (nonatomic, readonly) NSUInteger viewsUntilReward; 56 | 57 | /** 58 | @abstract Represents the reward amount for each completed rewarded ad view. 59 | @discussion This value will be 0 if the given zone is not configured for rewards. 60 | */ 61 | @property (nonatomic, readonly) NSUInteger rewardAmount; 62 | 63 | /** 64 | @abstract Represents the singular form of the reward name based on the reward amount. 65 | @discussion This value will be an empty string if the given zone is not configured for rewards. 66 | */ 67 | @property (nonatomic, readonly) NSString *rewardName; 68 | 69 | /** @name Handling Rewards */ 70 | 71 | /** 72 | @abstract Sets a block-based reward handler for your zone. 73 | @discussion Based on the success parameter, client-side reward implementations should consider incrementing the user's currency balance in this method. 74 | Server-side reward implementations, however, should consider the success parameter and then contact the game server to determine the current total balance for the virtual currency. 75 | Note that the associated block of code will be dispatched on the main thread. 76 | @param reward Callback for reward grant 77 | */ 78 | - (void)setReward:(nullable void (^)(BOOL success, NSString *name, int amount))reward; 79 | 80 | @end 81 | 82 | NS_ASSUME_NONNULL_END 83 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Info.plist -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module AdColony { 2 | umbrella header "AdColony.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_armv7/AdColony.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_armv7/AdColony.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_armv7/AdColony.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_armv7/AdColony.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_armv7/AdColony.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/AdColony: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/AdColony -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColony.h: -------------------------------------------------------------------------------- 1 | // 2 | // AdColony.h 3 | // AdColony 4 | // 5 | // Copyright © 2018 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | #import 11 | #import 12 | #import 13 | #import 14 | #import 15 | #import 16 | #import 17 | #import 18 | #import 19 | #import 20 | #import 21 | #import 22 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyAdOptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | /** 7 | AdColonyAdOptions objects are used to set configurable aspects of an ad session, such as third-party network settings, user metadata, etc. 8 | Set the properties below to configure a pre-defined ad option. Note that you can also set arbitrary options using the AdColonyOptions API. 9 | This class is NOT thread safe. 10 | */ 11 | @interface AdColonyAdOptions : AdColonyOptions 12 | 13 | /** @name Properties */ 14 | 15 | /** 16 | @abstract Enables reward dialogs to be shown before an advertisement. 17 | @discussion These popups are disabled by default. 18 | Set this property with a corresponding value of `YES` to enable. 19 | */ 20 | @property (nonatomic) BOOL showPrePopup; 21 | 22 | /** 23 | @abstract Enables reward dialogs to be shown after an advertisement. 24 | @discussion These popups are disabled by default. 25 | Set this property with a corresponding value of `YES` to enable. 26 | */ 27 | @property (nonatomic) BOOL showPostPopup; 28 | 29 | @end 30 | 31 | NS_ASSUME_NONNULL_END 32 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyAdRequestError.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | /** 4 | Typed error for AdColony ad requests. 5 | */ 6 | @interface AdColonyAdRequestError : NSError 7 | 8 | - (nonnull instancetype)init NS_UNAVAILABLE; 9 | 10 | - (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder NS_UNAVAILABLE; 11 | 12 | - (nonnull instancetype)initWithDomain:(nonnull NSErrorDomain)domain code:(NSInteger)code userInfo:(nullable NSDictionary *)dict NS_UNAVAILABLE; 13 | 14 | /** 15 | @abstract Zone ID 16 | @discussion ID of the zone that was requested 17 | */ 18 | @property (nonatomic, nonnull, strong, readonly) NSString *zoneId; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyAdSize.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #import 4 | 5 | NS_ASSUME_NONNULL_BEGIN 6 | 7 | /** 8 | @struct AdColonyAdSize 9 | @abstract Size for banner ads 10 | */ 11 | struct AdColonyAdSize { 12 | CGFloat width; 13 | CGFloat height; 14 | }; 15 | 16 | /** AdColony ad size */ 17 | typedef struct AdColonyAdSize AdColonyAdSize; 18 | 19 | /** 20 | @function AdColonyAdSizeMake 21 | @abstract Get a custom AdColonyAdSize 22 | @discussion Use this method if you want to display non-standard ad size banner. Otherwise, use one of the standard size constants. 23 | @param width height for a banner ad. 24 | @param height width for a banner ad. 25 | */ 26 | extern AdColonyAdSize AdColonyAdSizeMake(CGFloat width, CGFloat height); 27 | 28 | /** 29 | @function AdColonyAdSizeFromCGSize 30 | @abstract Get a custom AdColonyAdSize from CGSize. 31 | @discussion Use this method if you want to display non-standard ad size banner. Otherwise, use one of the standard size constants. 32 | @param size The size for a banner ad. 33 | */ 34 | extern AdColonyAdSize AdColonyAdSizeFromCGSize(CGSize size); 35 | 36 | /** 37 | @const kAdColonyAdSizeBanner 38 | @abstract 320 x 50 39 | @discussion The constant for a banner with 320 in width and 50 in height. 40 | */ 41 | extern AdColonyAdSize const kAdColonyAdSizeBanner; 42 | 43 | /** 44 | @const kAdColonyAdSizeMediumRectangle 45 | @abstract 300 x 250 46 | @discussion The constant for a banner with 300 in width and 250 in height. 47 | */ 48 | extern AdColonyAdSize const kAdColonyAdSizeMediumRectangle; 49 | 50 | /** 51 | @const kAdColonyAdSizeLeaderboard 52 | @abstract 728 x 90 53 | @discussion The constant for a banner with 728 in width and 90 in height. 54 | */ 55 | extern AdColonyAdSize const kAdColonyAdSizeLeaderboard; 56 | 57 | /** 58 | @const kAdColonyAdSizeSkyscraper 59 | @abstract 160 x 600 60 | @discussion The constant for a banner with 160 in width and 600 in height. 61 | */ 62 | extern AdColonyAdSize const kAdColonyAdSizeSkyscraper; 63 | 64 | 65 | NS_ASSUME_NONNULL_END 66 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyAdView.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | #import 4 | #import 5 | 6 | NS_ASSUME_NONNULL_BEGIN 7 | 8 | /** 9 | AdColonyAdViews is used to display AdColony Banner ads. 10 | */ 11 | @interface AdColonyAdView : UIView 12 | 13 | /** @name Zone */ 14 | 15 | /** 16 | @abstract Represents the unique zone identifier string from which the AdColonyAdView was requested. 17 | @discussion AdColony zone IDs can be created at the [Control Panel](http://clients.adcolony.com). 18 | */ 19 | @property (nonatomic, strong, readonly) NSString *zoneID; 20 | 21 | /** 22 | @abstract Indicates that the AdColonyAdView has been removed from the view hierarchy and should be destroyed. 23 | @discussion The AdColony SDK maintains internal resources when the ad is being displayed. 24 | When this method is called, all internal resources are destroyed and the associated memory is freed. 25 | */ 26 | - (void)destroy; 27 | 28 | @end 29 | 30 | NS_ASSUME_NONNULL_END 31 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyAdViewDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AdColonyAdViewDelegate.h 3 | // adc-ios-sdk 4 | // 5 | // Copyright © 2018 AdColony. All rights reserved. 6 | // 7 | 8 | @class AdColonyAdView; 9 | @class AdColonyAdRequestError; 10 | 11 | /** 12 | * The delegate of an AdColonyAdView object. This delegate receives ad view lifecycle notifications. 13 | */ 14 | @protocol AdColonyAdViewDelegate 15 | 16 | @required 17 | /** 18 | @abstract Did load notification 19 | @discussion Notifies you when ad view has been created, received the ad and is ready to use. Call is dispatched on main thread. 20 | @param adView Loaded ad view 21 | */ 22 | - (void)adColonyAdViewDidLoad:(AdColonyAdView * _Nonnull)adView; 23 | 24 | /** 25 | @abstract No ad notification 26 | @discussion Notifies you when SDK was not able to load the ad for requested zone. Call is dispatched on main thread. 27 | @param error Error with failure explanation 28 | */ 29 | - (void)adColonyAdViewDidFailToLoad:(AdColonyAdRequestError * _Nonnull)error; 30 | 31 | @optional 32 | /** 33 | @abstract Did show notification 34 | @discussion Ad view was added to a view with active window 35 | @param adView Shown ad view 36 | */ 37 | - (void)adColonyAdViewDidShow:(AdColonyAdView * _Nonnull)adView; 38 | 39 | /** 40 | @abstract Application leave notification 41 | @discussion Notifies you when ad view is going to redirect user to content outside of the application. 42 | @param adView The ad view which caused the user to leave the application. 43 | */ 44 | - (void)adColonyAdViewWillLeaveApplication:(AdColonyAdView * _Nonnull)adView; 45 | 46 | /** 47 | @abstract Open fullscreen content notification 48 | @discussion Notifies you when ad view is going to display fullscreen content. Call is dispatched on worker thread. 49 | @param adView Ad view that is going to display fullscreen content. 50 | */ 51 | - (void)adColonyAdViewWillOpen:(AdColonyAdView * _Nonnull)adView; 52 | 53 | /** 54 | @abstract Did close fullscreen content notification 55 | @discussion Notifies you when ad view stopped displaying fullscreen content 56 | @param adView Ad view that stopped displaying fullscreen content 57 | */ 58 | - (void)adColonyAdViewDidClose:(AdColonyAdView * _Nonnull)adView; 59 | 60 | /** 61 | @abstract Received a click notification 62 | @discussion Notifies you when adView receives a click 63 | @param adView Ad view that received a click 64 | */ 65 | - (void)adColonyAdViewDidReceiveClick:(AdColonyAdView * _Nonnull)adView; 66 | 67 | @end 68 | 69 | /** 70 | * The delegate of an AdColonyAdView object. This delegate receives ad view lifecycle notifications. 71 | */ 72 | @protocol AdColonyAdViewAdvancedDelegate 73 | 74 | @required 75 | 76 | /** 77 | @abstract Host view controller request 78 | @discussion Requests hosting view controller when needed if it wasn't provided during ad request. 79 | @param adView The ad view which requests host view controller. 80 | @return view controller that hosts given ad view 81 | */ 82 | - (UIViewController * _Nonnull)adColonyAdViewHostViewController:(AdColonyAdView * _Nonnull)adView; 83 | 84 | @end 85 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyInterstitial.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | @class UIViewController; 6 | 7 | NS_ASSUME_NONNULL_BEGIN 8 | 9 | /** 10 | Ad object returned from a request. This is used to show and receive callbacks once the ad is presented. 11 | */ 12 | @interface AdColonyInterstitial : NSObject 13 | 14 | /** @name Properties */ 15 | 16 | /** 17 | @abstract Interstitial delegate 18 | @discussion Delegate object that receives interstitial lifecycle notifications. 19 | */ 20 | @property (nonatomic, nullable, weak) id delegate __attribute__((deprecated("Deprecated in v4.7.0"))); 21 | 22 | /** 23 | @abstract Represents the unique zone identifier string from which the interstitial was requested. 24 | @discussion AdColony zone IDs can be created at the [Control Panel](http://clients.adcolony.com). 25 | */ 26 | @property (nonatomic, strong, readonly) NSString *zoneID; 27 | 28 | /** 29 | @abstract Indicates whether or not the interstitial has been played or if it has met its expiration time. 30 | @discussion AdColony interstitials become expired as soon as the ad launches or just before they have met their expiration time. 31 | */ 32 | @property (atomic, assign, readonly) BOOL expired; 33 | 34 | /** 35 | @abstract Indicates whether or not the interstitial has audio enabled. 36 | @discussion Leverage this property to determine if the application's audio should be paused while the ad is playing. 37 | */ 38 | @property (nonatomic, assign, readonly) BOOL audioEnabled; 39 | 40 | /** 41 | @abstract Indicates whether or not the interstitial is configured to trigger IAPs. 42 | @discussion Leverage this property to determine if the interstitial is configured to trigger IAPs. 43 | */ 44 | @property (nonatomic, assign, readonly) BOOL iapEnabled; 45 | 46 | 47 | 48 | /** @name Ad Playback */ 49 | 50 | /** 51 | @abstract Triggers a fullscreen ad experience. 52 | @param viewController The view controller on which the interstitial will display itself. 53 | @return Whether the SDK was ready to begin playback. 54 | */ 55 | - (BOOL)showWithPresentingViewController:(UIViewController *)viewController; 56 | 57 | /** 58 | @abstract Cancels the interstitial and returns control back to the application. 59 | @discussion Call this method to cancel the interstitial. 60 | Note that canceling interstitials before they finish will diminish publisher revenue. 61 | */ 62 | - (void)cancel; 63 | 64 | @end 65 | 66 | NS_ASSUME_NONNULL_END 67 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyInterstitialDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | 5 | @class AdColonyInterstitial; 6 | 7 | /** 8 | * The delegate of an AdColonyInterstitial object. This delegate receives interstitial lifecycle notifications. 9 | */ 10 | @protocol AdColonyInterstitialDelegate 11 | 12 | @required 13 | 14 | /** 15 | @abstract Did load notification 16 | @discussion Notifies you when interstitial has been created, received an ad and is ready to use. Call is dispatched on main thread. 17 | @param interstitial Loaded interstitial 18 | */ 19 | - (void)adColonyInterstitialDidLoad:(AdColonyInterstitial * _Nonnull)interstitial; 20 | 21 | /** 22 | @abstract No ad notification 23 | @discussion Notifies you when SDK was not able to load an ad for requested zone. Call is dispatched on main thread. 24 | @param error Error with failure explanation 25 | */ 26 | - (void)adColonyInterstitialDidFailToLoad:(AdColonyAdRequestError * _Nonnull)error; 27 | 28 | @optional 29 | 30 | /** 31 | @abstract Open notification 32 | @discussion Notifies you when interstitial is going to show fullscreen content. Call is dispatched on main thread. 33 | @param interstitial interstitial ad object 34 | */ 35 | - (void)adColonyInterstitialWillOpen:(AdColonyInterstitial * _Nonnull)interstitial; 36 | 37 | /** 38 | @abstract Close notification 39 | @discussion Notifies you when interstitial dismissed fullscreen content. Call is dispatched on main thread. 40 | @param interstitial interstitial ad object 41 | */ 42 | - (void)adColonyInterstitialDidClose:(AdColonyInterstitial * _Nonnull)interstitial; 43 | 44 | /** 45 | @abstract Expire notification 46 | @discussion Notifies you when an interstitial expires and is no longer valid for playback. This does not get triggered when the expired flag is set because it has been viewed. It's recommended to request a new ad within this callback. Call is dispatched on main thread. 47 | @param interstitial interstitial ad object 48 | */ 49 | - (void)adColonyInterstitialExpired:(AdColonyInterstitial * _Nonnull)interstitial; 50 | 51 | /** 52 | @abstract Will leave application notification 53 | @discussion Notifies you when an ad action cause the user to leave application. Call is dispatched on main thread. 54 | @param interstitial interstitial ad object 55 | */ 56 | - (void)adColonyInterstitialWillLeaveApplication:(AdColonyInterstitial * _Nonnull)interstitial; 57 | 58 | /** 59 | @abstract Click notification 60 | @discussion Notifies you when the user taps on the interstitial causing the action to be taken. Call is dispatched on main thread. 61 | @param interstitial interstitial ad object 62 | */ 63 | - (void)adColonyInterstitialDidReceiveClick:(AdColonyInterstitial * _Nonnull)interstitial; 64 | 65 | /** @name Videos For Purchase (V4P) */ 66 | 67 | /** 68 | @abstract IAP opportunity notification 69 | @discussion Notifies you when the ad triggers an IAP opportunity. 70 | @param interstitial interstitial ad object 71 | @param iapProductID IAP product id 72 | @param engagement engagement type 73 | */ 74 | - (void)adColonyInterstitial:(AdColonyInterstitial * _Nonnull)interstitial iapOpportunityWithProductId:(NSString * _Nonnull)iapProductID andEngagement:(AdColonyIAPEngagement)engagement; 75 | 76 | 77 | 78 | 79 | 80 | @end 81 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyOptions.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | /** 7 | AdColonyOptions is a superclass for all types of AdColonyOptions. 8 | Note that AdColonyOptions classes should never be instantiated directly. 9 | Instead, create one of the subclasses and set options on it using its properties as well as the string-based constants defined in its header file. 10 | */ 11 | @interface AdColonyOptions : NSObject 12 | 13 | /** @name Properties */ 14 | 15 | /** 16 | @abstract Represents an AdColonyUserMetadata object. 17 | @discussion Configure and set this property to improve ad targeting. 18 | @see AdColonyUserMetadata 19 | */ 20 | @property (nonatomic, strong, nullable) AdColonyUserMetadata *userMetadata __attribute__((deprecated("Deprecated in v4.7.0"))); 21 | 22 | /** @name Setting Options */ 23 | 24 | /** 25 | @abstract Sets a supported option. 26 | @discussion Use this method to set a string-based option with an arbitrary, string-based value. 27 | @param option An NSString representing the option. 28 | @param value An NSString used to configure the option. 29 | @return A BOOL indicating whether or not the option was set successfully. 30 | @see AdColonyAppOptions 31 | @see AdColonyAdOptions 32 | */ 33 | - (BOOL)setOption:(NSString *)option withStringValue:(NSString *)value; 34 | 35 | /** 36 | @abstract Sets a supported option. 37 | @discussion Use this method to set a string-based option with an arbitrary, numerial value. 38 | @param option An NSString representing the option. Strings must be 128 characters or less. 39 | @param value An NSNumber used to configure the option. 40 | @return A BOOL indicating whether or not the option was set successfully. 41 | @see AdColonyAppOptions 42 | @see AdColonyAdOptions 43 | */ 44 | - (BOOL)setOption:(NSString *)option withNumericValue:(NSNumber *)value; 45 | 46 | /** @name Option Retrieval */ 47 | 48 | /** 49 | @abstract Returns the string-based option associated with the given key. 50 | @discussion Call this method to obtain the string-based value associated with the given string-based key. 51 | @param key A string-based option key. 52 | @return The string-based value associated with the given key. Returns `nil` if the option has not been set. 53 | @see AdColonyAppOptions 54 | @see AdColonyAdOptions 55 | */ 56 | - (nullable NSString *)getStringOptionWithKey:(NSString *)key; 57 | 58 | /** 59 | @abstract Returns the numerical option associated with the given key. 60 | @discussion Call this method to obtain the numerical value associated with the given string-based key. 61 | @param key A string-based option key. 62 | @return The option value associated with the given key. Returns `nil` if the option has not been set. 63 | @see AdColonyAppOptions 64 | @see AdColonyAdOptions 65 | */ 66 | - (nullable NSNumber *)getNumericOptionWithKey:(NSString *)key; 67 | @end 68 | 69 | NS_ASSUME_NONNULL_END 70 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyTypes.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | /** 6 | Enum representing AdColony ad request error codes 7 | */ 8 | typedef NS_ENUM(NSUInteger, AdColonyRequestError) { 9 | 10 | /** An invalid app id or zone id was specified by the developer or an invalid configuration was received from the server (unlikely). */ 11 | AdColonyRequestErrorInvalidRequest = 0, 12 | 13 | /** The ad was skipped due to the skip interval setting on the control panel. */ 14 | AdColonyRequestErrorSkippedRequest, 15 | 16 | /** The current zone has no ad fill. */ 17 | AdColonyRequestErrorNoFillForRequest, 18 | 19 | /** Either AdColony has not been configured, is still in the process of configuring, is still downloading assets, or is already showing an ad. */ 20 | AdColonyRequestErrorUnready, 21 | 22 | /** This iOS version is no longer supported. */ 23 | AdColonyRequestErrorFeatureUnsupported, 24 | 25 | /** Unexpected result */ 26 | AdColonyRequestErrorUnexpected 27 | }; 28 | 29 | /** 30 | Enum representing in-app purchase (IAP) engagement types 31 | */ 32 | typedef NS_ENUM(NSUInteger, AdColonyIAPEngagement) { 33 | 34 | /** IAP was enabled for the ad, and the user engaged via a dynamic end card (DEC). */ 35 | AdColonyIAPEngagementEndCard = 0, 36 | 37 | /** IAP was enabled for the ad, and the user engaged via an in-vdeo engagement (Overlay). */ 38 | AdColonyIAPEngagementOverlay 39 | }; 40 | 41 | /** 42 | Enum representing supported ad orientations 43 | */ 44 | typedef NS_ENUM(NSInteger, AdColonyOrientation) { 45 | 46 | /** Portrait and upside down */ 47 | AdColonyOrientationPortrait = 0, 48 | 49 | /** Landscape left and landscape right */ 50 | AdColonyOrientationLandscape = 1, 51 | 52 | /** All orientations supported */ 53 | AdColonyOrientationAll = 2 54 | }; 55 | 56 | /** 57 | Enum representing zone types 58 | */ 59 | typedef NS_ENUM(NSInteger, AdColonyZoneType) { 60 | 61 | /** Invalid zone type */ 62 | AdColonyZoneTypeInvalid = -1, 63 | 64 | /** Interstitial zone type */ 65 | AdColonyZoneTypeInterstitial = 0, 66 | 67 | /** Banner zone type */ 68 | AdColonyZoneTypeBanner = 1 69 | }; 70 | 71 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Headers/AdColonyZone.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | NS_ASSUME_NONNULL_BEGIN 5 | 6 | /** 7 | AdColonyZone objects aggregate informative data about an AdColony zone such as its unique identifier, its `ADCOLONY_ZONE_TYPE`, etc. 8 | AdColonyZones also provide a block-based handler for zone-level reward events. 9 | Note that you should never instantiate one of these objects directly. You only need to use them when they are passed to you. 10 | */ 11 | @interface AdColonyZone : NSObject 12 | 13 | - (instancetype)init NS_UNAVAILABLE; 14 | 15 | /** @name Zone */ 16 | 17 | /** 18 | @abstract Represents the given zone's unique string identifier. 19 | @discussion AdColony zone IDs can be created at the [Control Panel](http://clients.adcolony.com). 20 | */ 21 | @property (nonatomic, readonly) NSString *identifier; 22 | 23 | /** 24 | @abstract Represents the zone type - interstitial, banner, or native. 25 | @discussion You can set the type for your zones at the [Control Panel](http://clients.adcolony.com). 26 | @see AdColonyZoneType 27 | */ 28 | @property (nonatomic, readonly) AdColonyZoneType type; 29 | 30 | /** 31 | @abstract Indicates whether or not the zone is enabled. 32 | @discussion Sending invalid zone id strings to `configureWithAppID:zoneIDs:options:completion:` will cause this value to be `NO`. 33 | */ 34 | @property (nonatomic, readonly) BOOL enabled; 35 | 36 | /** @name Rewards */ 37 | 38 | /** 39 | @abstract Indicates whether or not the zone is configured for rewards. 40 | @discussion You can configure rewards in your zones at the [Control Panel](http://clients.adcolony.com). 41 | Sending invalid zone id strings to `configureWithAppID:zoneIDs:options:completion:` will cause this value to be `NO`. 42 | */ 43 | @property (nonatomic, readonly) BOOL rewarded; 44 | 45 | /** 46 | @abstract Represents the number of completed ad views required to receive a reward for the given zone. 47 | @discussion This value will be 0 if the given zone is not configured for rewards. 48 | */ 49 | @property (nonatomic, readonly) NSUInteger viewsPerReward; 50 | 51 | /** 52 | @abstract Represents the number of ads that must be watched before a reward is given. 53 | @discussion This value will be 0 if the given zone is not configured for rewards. 54 | */ 55 | @property (nonatomic, readonly) NSUInteger viewsUntilReward; 56 | 57 | /** 58 | @abstract Represents the reward amount for each completed rewarded ad view. 59 | @discussion This value will be 0 if the given zone is not configured for rewards. 60 | */ 61 | @property (nonatomic, readonly) NSUInteger rewardAmount; 62 | 63 | /** 64 | @abstract Represents the singular form of the reward name based on the reward amount. 65 | @discussion This value will be an empty string if the given zone is not configured for rewards. 66 | */ 67 | @property (nonatomic, readonly) NSString *rewardName; 68 | 69 | /** @name Handling Rewards */ 70 | 71 | /** 72 | @abstract Sets a block-based reward handler for your zone. 73 | @discussion Based on the success parameter, client-side reward implementations should consider incrementing the user's currency balance in this method. 74 | Server-side reward implementations, however, should consider the success parameter and then contact the game server to determine the current total balance for the virtual currency. 75 | Note that the associated block of code will be dispatched on the main thread. 76 | @param reward Callback for reward grant 77 | */ 78 | - (void)setReward:(nullable void (^)(BOOL success, NSString *name, int amount))reward; 79 | 80 | @end 81 | 82 | NS_ASSUME_NONNULL_END 83 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Info.plist -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module AdColony { 2 | umbrella header "AdColony.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/AdColony.xcframework/ios-arm64_i386_x86_64-simulator/AdColony.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /AdNetworks.csv: -------------------------------------------------------------------------------- 1 | SKAdNetworkIdentifier 2 | 4pfyvq9l8r.skadnetwork 3 | yclnxrl5pm.skadnetwork 4 | v72qych5uu.skadnetwork 5 | tl55sbb4fm.skadnetwork 6 | t38b2kh725.skadnetwork 7 | prcb7njmu6.skadnetwork 8 | ppxm28t8ap.skadnetwork 9 | mlmmfzh3r3.skadnetwork 10 | klf5c3l5u5.skadnetwork 11 | hs6bdukanm.skadnetwork 12 | c6k4g5qg8m.skadnetwork 13 | 9t245vhmpl.skadnetwork 14 | 9rd848q2bz.skadnetwork 15 | 8s468mfl3y.skadnetwork 16 | 7ug5zh24hu.skadnetwork 17 | 4fzdc2evr5.skadnetwork 18 | 4468km3ulz.skadnetwork 19 | 3rd42ekr43.skadnetwork 20 | 2u9pt9hc89.skadnetwork 21 | m8dbw4sv7c.skadnetwork 22 | 7rz58n8ntl.skadnetwork 23 | ejvt5qm6ak.skadnetwork 24 | 5lm9lj6jb7.skadnetwork 25 | 44jx6755aq.skadnetwork 26 | mtkv5xtk9e.skadnetwork 27 | 6g9af3uyq4.skadnetwork 28 | uw77j35x4d.skadnetwork 29 | u679fj5vs4.skadnetwork 30 | rx5hdcabgc.skadnetwork 31 | g28c52eehv.skadnetwork 32 | cg4yq2srnc.skadnetwork 33 | 9nlqeag3gk.skadnetwork 34 | 275upjj5gd.skadnetwork 35 | wg4vff78zm.skadnetwork 36 | qqp299437r.skadnetwork 37 | kbmxgpxpgc.skadnetwork 38 | 294l99pt4k.skadnetwork 39 | 2fnua5tdw4.skadnetwork 40 | ydx93a7ass.skadnetwork 41 | 523jb4fst2.skadnetwork 42 | cj5566h2ga.skadnetwork 43 | r45fhb6rf7.skadnetwork 44 | g2y4y55b64.skadnetwork 45 | wzmmz9fp6w.skadnetwork 46 | n6fk4nfna4.skadnetwork 47 | kbd757ywx3.skadnetwork 48 | n9x2a789qt.skadnetwork 49 | pwa73g5rt2.skadnetwork 50 | 74b6s63p6l.skadnetwork 51 | 44n7hlldy6.skadnetwork 52 | 5l3tpt7t6e.skadnetwork 53 | e5fvkxwrpn.skadnetwork 54 | gta9lk7p23.skadnetwork 55 | 84993kbrcf.skadnetwork 56 | pwdxu55a5a.skadnetwork 57 | 6964rsfnh4.skadnetwork 58 | a7xqa6mtl2.skadnetwork 59 | c3frkrj4fj.skadnetwork 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # $${\color{red}Deprecated}$$ 3 | 4 | This library has been depracated, please visit [https://www.digitalturbine.com/app-developers/#monetizationsolutions](https://www.digitalturbine.com/app-developers/#monetizationsolutions) website for alternative options. 5 | 6 | ---------------------------- 7 | 8 | 9 | 10 | # AdColony iOS SDK 11 | * Modified: June 7th, 2022 12 | * SDK Version: 4.9.0 13 | 14 | ## Overview 15 | 16 | AdColony delivers zero-buffering, 17 | [full-screen Instant-Play™ HD video](https://www.adcolony.com/technology/instant-play/), 18 | [interactive Aurora™ Video](https://www.adcolony.com/technology/auroravideo), 19 | and Aurora™ Playable ads that can be displayed anywhere within your 20 | application. Our advertising SDK is trusted by the world’s top gaming 21 | and non-gaming publishers, delivering them the highest monetization 22 | opportunities from brand and performance advertisers. AdColony’s SDK 23 | can monetize a wide range of ad formats including in-stream/pre-roll, 24 | out-stream/interstitial and V4VC™, a secure system for rewarding users 25 | of your app with virtual currency upon the completion of video and 26 | playable ads. 27 | 28 | ## Release Notes 29 | 30 | ### 4.9.0 31 | 32 | * Added `adColonyAdViewDidShow:` api to AdView delegate 33 | * Fixed crash (SIGSEGV/fwrite) 34 | 35 | Here is the link to the 36 | [release notes](https://github.com/AdColony/AdColony-iOS-SDK/blob/master/CHANGELOG.md) 37 | for all the previous SDK versions. 38 | 39 | ## Getting Started 40 | 41 | To get started, here is the link to 42 | [iOS SDK integration documentation](https://github.com/AdColony/AdColony-iOS-SDK/wiki). 43 | 44 | 45 | * Tested and verified on iOS 14.5+, 15.0 46 | * Xcode 12.5 and up 47 | * Works on iOS 9 and above. 48 | * Not backwards compatible with any AdColony 2.0 integrations due to major API changes. 49 | 50 | ## Upgrading 51 | 52 | #### SDK 2.X 53 | 54 | Please note that updating from our 2.x SDK is not a drag and drop 55 | update, but rather includes breaking API and process changes. In order 56 | to take advantage of the 3.x SDK, a complete re-integration is 57 | necessary. Please review our 58 | [documentation](https://github.com/AdColony/AdColony-iOS-SDK/wiki) 59 | to get a better idea on what changes will be necessary in your app. 60 | 61 | For detailed information about the AdColony SDK, see our 62 | [iOS SDK documentation](https://github.com/AdColony/AdColony-iOS-SDK/wiki). 63 | 64 | #### SDK 3.X 65 | 66 | Updating from 3.x SDK is still drag and drop update although you'll see deprecation warnings on interstitial API. 67 | 3.x interstitial API is still fully functional and will remain fully functional at least until iOS 14 release. 68 | Just drag and drop the framework into your Xcode project. If you are 69 | using Cocoapods, sync with the latest by running `pod update`. 70 | 71 | For detailed information about the AdColony SDK, see our 72 | [iOS SDK documentation](https://github.com/AdColony/AdColony-iOS-SDK/wiki). 73 | 74 | 75 | 76 | ## Legal Requirements 77 | 78 | By downloading the AdColony SDK, you are granted a limited, 79 | non-commercial license to use and review the SDK solely for evaluation 80 | purposes. If you wish to integrate the SDK into any commercial 81 | applications, you must register an account with AdColony and accept 82 | the terms and conditions on the AdColony website. 83 | 84 | Note that U.S. based companies will need to complete the W-9 form and 85 | send it to us before publisher payments can be issued. 86 | 87 | ## Contact Us 88 | 89 | For more information, please visit AdColony.com. For questions or 90 | assistance, please email us at support@adcolony.com. 91 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic.xcodeproj/project.xcworkspace/xcshareddata/AdColonyBasic.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | F3565B37-708A-45D2-87F1-F255C3EB7878 9 | IDESourceControlProjectName 10 | AdColonyBasic 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 5360545CAEB1B944C311AFE7753ECF3D6092C618 14 | jirbo.git.beanstalkapp.com:/jirbo/adcolony-ios-2.git 15 | 16 | IDESourceControlProjectPath 17 | SampleApps/ObjC/AdColonyBasic/AdColonyBasic.xcodeproj 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 5360545CAEB1B944C311AFE7753ECF3D6092C618 21 | ../../../../.. 22 | 23 | IDESourceControlProjectURL 24 | jirbo.git.beanstalkapp.com:/jirbo/adcolony-ios-2.git 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | 5360545CAEB1B944C311AFE7753ECF3D6092C618 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 5360545CAEB1B944C311AFE7753ECF3D6092C618 36 | IDESourceControlWCCName 37 | adcolony-ios-2 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic.xcodeproj/project.xcworkspace/xcshareddata/AdColonyBasic.xcscmblueprint: -------------------------------------------------------------------------------- 1 | { 2 | "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "94C2E7F5E16D289008CF0635EC56AE1552794110", 3 | "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { 4 | 5 | }, 6 | "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { 7 | "5360545CAEB1B944C311AFE7753ECF3D6092C618" : 0, 8 | "78EFEB2F3C12FF38F83D106B99C306C91EF9CBC2" : 0, 9 | "94C2E7F5E16D289008CF0635EC56AE1552794110" : 0 10 | }, 11 | "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "F3565B37-708A-45D2-87F1-F255C3EB7878", 12 | "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { 13 | "5360545CAEB1B944C311AFE7753ECF3D6092C618" : "adcolony-ios-2", 14 | "78EFEB2F3C12FF38F83D106B99C306C91EF9CBC2" : "AdColony-iOS-SDK\/", 15 | "94C2E7F5E16D289008CF0635EC56AE1552794110" : "AdColony-iOS-SDK-3\/" 16 | }, 17 | "DVTSourceControlWorkspaceBlueprintNameKey" : "AdColonyBasic", 18 | "DVTSourceControlWorkspaceBlueprintVersion" : 204, 19 | "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "SampleApps\/ObjC\/AdColonyBasic\/AdColonyBasic.xcodeproj", 20 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ 21 | { 22 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "jirbo.git.beanstalkapp.com:\/jirbo\/adcolony-ios-2.git", 23 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 24 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "5360545CAEB1B944C311AFE7753ECF3D6092C618" 25 | }, 26 | { 27 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/AdColony\/AdColony-iOS-SDK.git", 28 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 29 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "78EFEB2F3C12FF38F83D106B99C306C91EF9CBC2" 30 | }, 31 | { 32 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/AdColony\/AdColony-iOS-SDK.git", 33 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 34 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "94C2E7F5E16D289008CF0635EC56AE1552794110" 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // AdColonyBasic 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (strong, nonatomic) UIWindow *window; 15 | 16 | @end 17 | 18 | NS_ASSUME_NONNULL_END 19 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // AdColonyBasic 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 16 | if (@available(iOS 11.3, *)) { 17 | [SKAdNetwork registerAppForAdNetworkAttribution]; 18 | } 19 | return YES; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/BannersViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BannersViewController.h 3 | // AdColonyBasic 4 | // 5 | // Copyright © 2019 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @interface BannersViewController : UIViewController 13 | 14 | @end 15 | 16 | NS_ASSUME_NONNULL_END 17 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/BannersViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // BannersViewController.m 3 | // AdColonyBasic 4 | // 5 | // Copyright © 2019 AdColony. All rights reserved. 6 | // 7 | 8 | #import "BannersViewController.h" 9 | #import "Settings.h" 10 | 11 | #import 12 | 13 | 14 | #pragma mark - BannersViewController Interface 15 | 16 | @interface BannersViewController () 17 | 18 | @property (nonatomic, weak) AdColonyAdView *ad; 19 | 20 | @property (nonatomic, weak) IBOutlet UIView *bannerPlacement; 21 | @property (nonatomic, weak) IBOutlet UIActivityIndicatorView *spinner; 22 | @property (nonatomic, weak) IBOutlet UILabel *loadingLabel; 23 | @property (nonatomic, weak) IBOutlet UIButton *loadButton; 24 | 25 | @end 26 | 27 | @implementation BannersViewController 28 | 29 | #pragma mark - UIViewController Overrides 30 | 31 | - (void)viewDidLoad { 32 | [super viewDidLoad]; 33 | [self setLoadingState]; 34 | } 35 | 36 | - (void)viewDidAppear:(BOOL)animated { 37 | [super viewDidAppear:animated]; 38 | [self requestBanner]; 39 | } 40 | 41 | - (void)viewDidDisappear:(BOOL)animated { 42 | [super viewDidDisappear:animated]; 43 | [self clearBanner]; 44 | } 45 | 46 | #pragma mark - AdColony 47 | 48 | - (void)requestBanner { 49 | [self setLoadingState]; 50 | [AdColony requestAdViewInZone:kAdColonyBannerZoneID withSize:kAdColonyAdSizeBanner viewController:self andDelegate:self]; 51 | } 52 | 53 | - (void)clearBanner { 54 | if (self.ad) { 55 | [self.ad destroy]; 56 | self.ad = nil; 57 | } 58 | } 59 | 60 | - (void)adColonyAdViewDidLoad:(AdColonyAdView *)adView { 61 | [self clearBanner]; 62 | self.ad = adView; 63 | CGSize placementSize = self.bannerPlacement.frame.size; 64 | adView.frame = CGRectMake(0, 0, placementSize.width, placementSize.height); 65 | [self.bannerPlacement addSubview:adView]; 66 | [self setReadyState]; 67 | } 68 | 69 | - (void)adColonyAdViewDidFailToLoad:(AdColonyAdRequestError *)error { 70 | if (error.localizedFailureReason) { 71 | NSLog(@"SAMPLE_APP: Banner request failed in zone %@ with error: %@ and failure reason: %@", error.zoneId, error.localizedDescription, error.localizedFailureReason); 72 | } else if (error.localizedRecoverySuggestion) { 73 | NSLog(@"SAMPLE_APP: Banner request failed in zone %@ with error: %@ and suggestion: %@", error.zoneId, error.localizedDescription, error.localizedRecoverySuggestion); 74 | } else { 75 | NSLog(@"SAMPLE_APP: Banner request failed in zone %@ with error: %@", error.zoneId, error.localizedDescription); 76 | } 77 | [self setReadyState]; 78 | } 79 | 80 | #pragma mark - UI 81 | 82 | - (void)setReadyState { 83 | self.loadingLabel.hidden = YES; 84 | [self.spinner stopAnimating]; 85 | self.loadButton.hidden = NO; 86 | [UIView animateWithDuration:1.0 animations:^{ self.loadButton.alpha = 1.0; } completion:nil]; 87 | } 88 | 89 | - (void)setLoadingState { 90 | self.loadButton.hidden = YES; 91 | self.loadButton.alpha = 0.0; 92 | self.loadingLabel.hidden = NO; 93 | [self.spinner startAnimating]; 94 | } 95 | 96 | #pragma mark - Action Handlers 97 | 98 | - (IBAction)loadBanner:(id)sender { 99 | [self requestBanner]; 100 | } 101 | 102 | - (IBAction)goBack:(id)sender { 103 | [self dismissViewControllerAnimated:YES completion:nil]; 104 | } 105 | 106 | @end 107 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-100.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-1024.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-114.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-120-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-120.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-144.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-167.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-29-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-29-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-29.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-40.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-50.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-57.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-58-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-58.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-72.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-76.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-80-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-80.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-87.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-tablet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-tablet@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "bg@1x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "bg@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "bg@2x-1.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton-Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn-banner-pressed@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn-banner-pressed@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn-banner-pressed@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton-Press.imageset/btn-banner-pressed@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton-Press.imageset/btn-banner-pressed@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton-Press.imageset/btn-banner-pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton-Press.imageset/btn-banner-pressed@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton-Press.imageset/btn-banner-pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton-Press.imageset/btn-banner-pressed@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn-banner@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn-banner@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn-banner@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton.imageset/btn-banner@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton.imageset/btn-banner@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton.imageset/btn-banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton.imageset/btn-banner@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton.imageset/btn-banner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/BannerButton.imageset/btn-banner@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn-interstial-press@2x-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn-interstial-press@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "btn-interstitial-press@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstial-press@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstial-press@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstial-press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstial-press@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstitial-press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstitial-press@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn-interstitial@2x-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn-interstitial@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "btn-interstitial@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-1242x2208.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-2208x1242-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-2208x1242-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-480h-portrait@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-480h-portrait@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-480h-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-480h-portrait@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-567h-portrait@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-567h-portrait@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-567h-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-567h-portrait@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-750x1334-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-750x1334-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x-status-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x-status-bar.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@2x-status-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@2x-status-bar.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@1x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@1x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@1x-status-bar 1.35.29 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@1x-status-bar 1.35.29 PM.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@2x-status-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@2x-status-bar.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-portrait@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "launch-screen@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "launch-screen@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "launch-screen@2x-1.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "logo-312x80.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "logo-312x80-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "logo-312x80-2.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Logo.imageset/logo-312x80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Logo.imageset/logo-312x80-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Logo.imageset/logo-312x80-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Logo.imageset/logo-312x80-2.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Logo.imageset/logo-312x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Logo.imageset/logo-312x80.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banner.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "text-banners@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "text-banners@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "text-banners@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banner.imageset/text-banners@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banner.imageset/text-banners@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banner.imageset/text-banners@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banner.imageset/text-banners@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banner.imageset/text-banners@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banner.imageset/text-banners@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "text-interstitial@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "text-interstitial@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "text-interstitial@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/Settings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Settings.h 3 | // AdColonyBasic 4 | // 5 | // Copyright © 2019 AdColony. All rights reserved. 6 | // 7 | 8 | #ifndef Settings_h 9 | #define Settings_h 10 | 11 | 12 | 13 | #pragma mark - Constants 14 | 15 | #define kAdColonyAppID @"appbdee68ae27024084bb334a" 16 | #define kAdColonyInterstitialZoneID @"vzf8fb4670a60e4a139d01b5" 17 | #define kAdColonyBannerZoneID @"vz77f5db656e2840c4ab" 18 | 19 | 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // AdColonyBasic 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @interface ViewController : UIViewController 13 | 14 | @end 15 | 16 | NS_ASSUME_NONNULL_END 17 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyBasic/AdColonyBasic/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AdColonyBasic 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "AppDelegate.h" 10 | 11 | int main(int argc, char * argv[]) { 12 | @autoreleasepool { 13 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // AdColonyV4VC 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (strong, nonatomic) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // AdColonyV4VC 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 16 | if (@available(iOS 11.3, *)) { 17 | [SKAdNetwork registerAppForAdNetworkAttribution]; 18 | } 19 | return YES; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "size" : "29x29", 15 | "idiom" : "iphone", 16 | "filename" : "icon-v4vc-29.png", 17 | "scale" : "1x" 18 | }, 19 | { 20 | "size" : "29x29", 21 | "idiom" : "iphone", 22 | "filename" : "icon-v4vc-58.png", 23 | "scale" : "2x" 24 | }, 25 | { 26 | "size" : "29x29", 27 | "idiom" : "iphone", 28 | "filename" : "icon-v4vc-87.png", 29 | "scale" : "3x" 30 | }, 31 | { 32 | "size" : "40x40", 33 | "idiom" : "iphone", 34 | "filename" : "icon-v4vc-80-1.png", 35 | "scale" : "2x" 36 | }, 37 | { 38 | "size" : "40x40", 39 | "idiom" : "iphone", 40 | "filename" : "icon-v4vc-120.png", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "size" : "57x57", 45 | "idiom" : "iphone", 46 | "filename" : "icon-v4vc-57.png", 47 | "scale" : "1x" 48 | }, 49 | { 50 | "size" : "57x57", 51 | "idiom" : "iphone", 52 | "filename" : "icon-v4vc-114.png", 53 | "scale" : "2x" 54 | }, 55 | { 56 | "size" : "60x60", 57 | "idiom" : "iphone", 58 | "filename" : "icon-v4vc-120-1.png", 59 | "scale" : "2x" 60 | }, 61 | { 62 | "size" : "60x60", 63 | "idiom" : "iphone", 64 | "filename" : "icon-v4vc@3x.png", 65 | "scale" : "3x" 66 | }, 67 | { 68 | "idiom" : "ipad", 69 | "size" : "20x20", 70 | "scale" : "1x" 71 | }, 72 | { 73 | "idiom" : "ipad", 74 | "size" : "20x20", 75 | "scale" : "2x" 76 | }, 77 | { 78 | "size" : "29x29", 79 | "idiom" : "ipad", 80 | "filename" : "icon-v4vc-29-1.png", 81 | "scale" : "1x" 82 | }, 83 | { 84 | "size" : "29x29", 85 | "idiom" : "ipad", 86 | "filename" : "icon-v4vc-58-1.png", 87 | "scale" : "2x" 88 | }, 89 | { 90 | "size" : "40x40", 91 | "idiom" : "ipad", 92 | "filename" : "icon-v4vc-40.png", 93 | "scale" : "1x" 94 | }, 95 | { 96 | "size" : "40x40", 97 | "idiom" : "ipad", 98 | "filename" : "icon-v4vc-80.png", 99 | "scale" : "2x" 100 | }, 101 | { 102 | "size" : "50x50", 103 | "idiom" : "ipad", 104 | "filename" : "icon-v4vc-50.png", 105 | "scale" : "1x" 106 | }, 107 | { 108 | "size" : "50x50", 109 | "idiom" : "ipad", 110 | "filename" : "icon-v4vc-100.png", 111 | "scale" : "2x" 112 | }, 113 | { 114 | "size" : "72x72", 115 | "idiom" : "ipad", 116 | "filename" : "icon-v4vc-72.png", 117 | "scale" : "1x" 118 | }, 119 | { 120 | "size" : "72x72", 121 | "idiom" : "ipad", 122 | "filename" : "icon-v4vc-144.png", 123 | "scale" : "2x" 124 | }, 125 | { 126 | "size" : "76x76", 127 | "idiom" : "ipad", 128 | "filename" : "icon-v4vc-76.png", 129 | "scale" : "1x" 130 | }, 131 | { 132 | "size" : "76x76", 133 | "idiom" : "ipad", 134 | "filename" : "icon-v4vc-152.png", 135 | "scale" : "2x" 136 | }, 137 | { 138 | "size" : "83.5x83.5", 139 | "idiom" : "ipad", 140 | "filename" : "icon-interstitial-167.png", 141 | "scale" : "2x" 142 | }, 143 | { 144 | "size" : "1024x1024", 145 | "idiom" : "ios-marketing", 146 | "filename" : "icon-v4vc-1024.png", 147 | "scale" : "1x" 148 | } 149 | ], 150 | "info" : { 151 | "version" : 1, 152 | "author" : "xcode" 153 | } 154 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-interstitial-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-interstitial-167.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-100.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-1024.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-114.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-120-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-120.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-144.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-152.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-29-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-29-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-29.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-40.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-50.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-57.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-58-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-58.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-72.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-76.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-80-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-80.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-87.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "bg@1x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "bg@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "bg@2x-1.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn-v4vc-press@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn-v4vc-press@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "btn-v4vc-press@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn-v4vc@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn-v4vc@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "btn-v4vc@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-coin@2x-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon-coin@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "icon-coin@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-1242x2208.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-2208x1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-2208x1242.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-320x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-320x480.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x1136-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x1136-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x1136.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x960-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x960-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x960.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-750x1334.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1024x748.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1024x748.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1024x768.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1536x2008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1536x2008.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1536x2048-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1536x2048-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1536x2048.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-2048x1496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-2048x1496.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-2048x1536-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-2048x1536-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-2048x1536.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-768x1004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-768x1004.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-768x1024-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-768x1024-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-768x1024.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "launch-screen@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "launch-screen@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "launch-screen@2x-1.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@1x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "text-v4vc@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "text-v4vc@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "text-v4vc@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@2x-1.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@2x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@3x.png -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // AdColonyV4VC 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | @interface ViewController : UIViewController 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /SampleApps/ObjC/AdColonyV4VC/AdColonyV4VC/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AdColonyV4VC 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "AppDelegate.h" 10 | 11 | int main(int argc, char * argv[]) { 12 | @autoreleasepool { 13 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/AdColonyBasic-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // AdColonyBasic-Bridging-Header.h 3 | // AdColonyBasic 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // AdColonyBasic 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | import StoreKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | private func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: Any]?) -> Bool { 17 | if #available(iOS 11.3, *) { 18 | SKAdNetwork.registerAppForAdNetworkAttribution() 19 | } 20 | return true 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/BannersViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BannersViewController.swift 3 | // AdColonyBasic 4 | // 5 | // Copyright © 2019 AdColony. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | 10 | class BannersViewController: UIViewController, AdColonyAdViewDelegate { 11 | 12 | @IBOutlet weak var loadButton: UIButton! 13 | @IBOutlet weak var spinner: UIActivityIndicatorView! 14 | @IBOutlet weak var loadingLabel: UILabel! 15 | @IBOutlet weak var bannerPlacement: UIView! 16 | 17 | weak var ad: AdColonyAdView? = nil 18 | 19 | //============================================= 20 | // MARK:- UIViewController Overrides 21 | //============================================= 22 | 23 | override func viewDidLoad() { 24 | super.viewDidLoad() 25 | self.setLoadingState() 26 | } 27 | 28 | override func viewDidAppear(_ animated: Bool) { 29 | super.viewDidAppear(animated) 30 | self.requestBanner() 31 | } 32 | 33 | override func viewDidDisappear(_ animated: Bool) { 34 | super.viewDidDisappear(animated) 35 | self.clearBanner() 36 | } 37 | 38 | //============================================= 39 | // MARK:- AdColony 40 | //============================================= 41 | 42 | func requestBanner() { 43 | self.setLoadingState() 44 | AdColony.requestAdView(inZone: Constants.adColonyBannerZoneID, with: kAdColonyAdSizeBanner, viewController: self, andDelegate: self) 45 | } 46 | 47 | func adColonyAdViewDidLoad(_ adView: AdColonyAdView) { 48 | self.clearBanner() 49 | self.ad = adView 50 | let placementSize = self.bannerPlacement.frame.size; 51 | adView.frame = CGRect(x: 0, y: 0, width: placementSize.width, height: placementSize.height) 52 | self.bannerPlacement.addSubview(adView) 53 | self.setReadyState() 54 | } 55 | 56 | func adColonyAdViewDidFail(toLoad error: AdColonyAdRequestError) { 57 | if let reason = error.localizedFailureReason { 58 | print("SAMPLE_APP: Banner request failed in zone \(error.zoneId) with error: \(error.localizedDescription) and failure reason: \(reason)") 59 | } else if let recoverySuggestion = error.localizedRecoverySuggestion { 60 | print("SAMPLE_APP: Banner request failed in zone \(error.zoneId) with error: \(error.localizedDescription) and recovery suggestion: \(recoverySuggestion)") 61 | } else { 62 | print("SAMPLE_APP: Banner request failed in zone \(error.zoneId) with error: \(error.localizedDescription)") 63 | } 64 | self.setReadyState() 65 | } 66 | 67 | func clearBanner() { 68 | if let adView = self.ad { 69 | adView.destroy() 70 | self.ad = nil 71 | } 72 | } 73 | 74 | //============================================= 75 | // MARK:- UI 76 | //============================================= 77 | 78 | func setLoadingState() { 79 | self.spinner.startAnimating() 80 | self.loadingLabel.isHidden = false 81 | self.loadButton.alpha = 0 82 | self.loadButton.isHidden = true 83 | } 84 | 85 | func setReadyState() { 86 | self.spinner.stopAnimating() 87 | self.loadingLabel.isHidden = true 88 | self.loadButton.isHidden = false 89 | UIView.animate(withDuration: 1) { 90 | self.loadButton.alpha = 1 91 | } 92 | } 93 | 94 | @IBAction func loadBanner() { 95 | self.requestBanner() 96 | } 97 | 98 | @IBAction func goBack() { 99 | self.dismiss(animated: true, completion: nil) 100 | } 101 | 102 | } 103 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Constants.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Constants.swift 3 | // AdColonyBasic 4 | // 5 | // Copyright © 2019 AdColony. All rights reserved. 6 | // 7 | 8 | import Foundation 9 | 10 | 11 | struct Constants { 12 | 13 | static let adColonyAppID = "appbdee68ae27024084bb334a" 14 | static let adColonyInterstitialZoneID = "vzf8fb4670a60e4a139d01b5" 15 | static let adColonyBannerZoneID = "vz77f5db656e2840c4ab" 16 | 17 | } 18 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "size" : "29x29", 15 | "idiom" : "iphone", 16 | "filename" : "icon-interstitial-58.png", 17 | "scale" : "2x" 18 | }, 19 | { 20 | "size" : "29x29", 21 | "idiom" : "iphone", 22 | "filename" : "icon-interstitial-87.png", 23 | "scale" : "3x" 24 | }, 25 | { 26 | "size" : "40x40", 27 | "idiom" : "iphone", 28 | "filename" : "icon-interstitial-80.png", 29 | "scale" : "2x" 30 | }, 31 | { 32 | "size" : "40x40", 33 | "idiom" : "iphone", 34 | "filename" : "icon-interstitial-120.png", 35 | "scale" : "3x" 36 | }, 37 | { 38 | "size" : "60x60", 39 | "idiom" : "iphone", 40 | "filename" : "icon-interstitial-120-1.png", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "size" : "60x60", 45 | "idiom" : "iphone", 46 | "filename" : "icon-interstitial@3x.png", 47 | "scale" : "3x" 48 | }, 49 | { 50 | "idiom" : "ipad", 51 | "size" : "20x20", 52 | "scale" : "1x" 53 | }, 54 | { 55 | "idiom" : "ipad", 56 | "size" : "20x20", 57 | "scale" : "2x" 58 | }, 59 | { 60 | "size" : "29x29", 61 | "idiom" : "ipad", 62 | "filename" : "icon-interstitial-29.png", 63 | "scale" : "1x" 64 | }, 65 | { 66 | "size" : "29x29", 67 | "idiom" : "ipad", 68 | "filename" : "icon-interstitial-58-1.png", 69 | "scale" : "2x" 70 | }, 71 | { 72 | "size" : "40x40", 73 | "idiom" : "ipad", 74 | "filename" : "icon-interstitial-40.png", 75 | "scale" : "1x" 76 | }, 77 | { 78 | "size" : "40x40", 79 | "idiom" : "ipad", 80 | "filename" : "icon-interstitial-80-1.png", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "size" : "76x76", 85 | "idiom" : "ipad", 86 | "filename" : "icon-interstitial-76.png", 87 | "scale" : "1x" 88 | }, 89 | { 90 | "size" : "76x76", 91 | "idiom" : "ipad", 92 | "filename" : "icon-interstitial-tablet@2x.png", 93 | "scale" : "2x" 94 | }, 95 | { 96 | "size" : "83.5x83.5", 97 | "idiom" : "ipad", 98 | "filename" : "icon-interstitial-83.5@2x.png", 99 | "scale" : "2x" 100 | }, 101 | { 102 | "size" : "1024x1024", 103 | "idiom" : "ios-marketing", 104 | "filename" : "icon-interstitial-1024.png", 105 | "scale" : "1x" 106 | } 107 | ], 108 | "info" : { 109 | "version" : 1, 110 | "author" : "xcode" 111 | } 112 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-1024.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-120-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-120.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-29.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-40.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-58-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-58.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-76.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-80-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-80.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-83.5@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-87.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-tablet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial-tablet@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/AppIcon.appiconset/icon-interstitial@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "bg@1x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "bg@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "bg@2x-1.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Background.imageset/bg@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn-interstial-press@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn-interstial-press@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "btn-interstitial-press@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstial-press@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstial-press@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstial-press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstial-press@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstitial-press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button-Press.imageset/btn-interstitial-press@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn-interstitial@2x-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn-interstitial@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "btn-interstitial@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Button.imageset/btn-interstitial@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners-Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn-banner-pressed@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn-banner-pressed@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn-banner-pressed@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners-Press.imageset/btn-banner-pressed@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners-Press.imageset/btn-banner-pressed@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners-Press.imageset/btn-banner-pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners-Press.imageset/btn-banner-pressed@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners-Press.imageset/btn-banner-pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners-Press.imageset/btn-banner-pressed@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "btn-banner@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "btn-banner@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "btn-banner@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners.imageset/btn-banner@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners.imageset/btn-banner@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners.imageset/btn-banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners.imageset/btn-banner@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners.imageset/btn-banner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/ButtonBanners.imageset/btn-banner@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "extent" : "full-screen", 5 | "idiom" : "iphone", 6 | "subtype" : "736h", 7 | "filename" : "default-736-portrait@2x.png", 8 | "minimum-system-version" : "8.0", 9 | "orientation" : "portrait", 10 | "scale" : "3x" 11 | }, 12 | { 13 | "extent" : "full-screen", 14 | "idiom" : "iphone", 15 | "subtype" : "736h", 16 | "filename" : "default-736-landscape@2x.png", 17 | "minimum-system-version" : "8.0", 18 | "orientation" : "landscape", 19 | "scale" : "3x" 20 | }, 21 | { 22 | "extent" : "full-screen", 23 | "idiom" : "iphone", 24 | "subtype" : "667h", 25 | "filename" : "default-667h-portrait@2x.png", 26 | "minimum-system-version" : "8.0", 27 | "orientation" : "portrait", 28 | "scale" : "2x" 29 | }, 30 | { 31 | "orientation" : "portrait", 32 | "idiom" : "iphone", 33 | "extent" : "full-screen", 34 | "minimum-system-version" : "7.0", 35 | "filename" : "default-480h-portrait@2x.png", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "extent" : "full-screen", 40 | "idiom" : "iphone", 41 | "subtype" : "retina4", 42 | "filename" : "default-567h-portrait@2x.png", 43 | "minimum-system-version" : "7.0", 44 | "orientation" : "portrait", 45 | "scale" : "2x" 46 | }, 47 | { 48 | "orientation" : "portrait", 49 | "idiom" : "ipad", 50 | "extent" : "full-screen", 51 | "minimum-system-version" : "7.0", 52 | "filename" : "default-ipad-portrait@1x.png", 53 | "scale" : "1x" 54 | }, 55 | { 56 | "orientation" : "landscape", 57 | "idiom" : "ipad", 58 | "extent" : "full-screen", 59 | "minimum-system-version" : "7.0", 60 | "filename" : "default-ipad-landscape@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "orientation" : "portrait", 65 | "idiom" : "ipad", 66 | "extent" : "full-screen", 67 | "minimum-system-version" : "7.0", 68 | "filename" : "default-ipad-portrait@2x-2.png", 69 | "scale" : "2x" 70 | }, 71 | { 72 | "orientation" : "landscape", 73 | "idiom" : "ipad", 74 | "extent" : "full-screen", 75 | "minimum-system-version" : "7.0", 76 | "filename" : "default-ipad-landscape@2x-2.png", 77 | "scale" : "2x" 78 | } 79 | ], 80 | "info" : { 81 | "version" : 1, 82 | "author" : "xcode" 83 | } 84 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-480h-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-480h-portrait@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-567h-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-567h-portrait@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-667h-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-667h-portrait@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-736-landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-736-landscape@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-736-portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-736-portrait@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-landscape@2x-2.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchImage.launchimage/default-ipad-portrait@2x-2.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "launch-screen@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "launch-screen@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "launch-screen@2x-1.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banners.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "text-banners@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "text-banners@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "text-banners@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banners.imageset/text-banners@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banners.imageset/text-banners@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banners.imageset/text-banners@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banners.imageset/text-banners@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banners.imageset/text-banners@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text-Banners.imageset/text-banners@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "text-interstitial@2x-1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "text-interstitial@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "text-interstitial@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyBasic/AdColonyBasic/Images.xcassets/Text.imageset/text-interstitial@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/AdColonyV4VC-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // AdColonyBasic-Bridging-Header.h 3 | // AdColonyBasic 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | #import 9 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // AdColonyV4VC 4 | // 5 | // Copyright (c) 2016 AdColony. All rights reserved. 6 | // 7 | 8 | import UIKit 9 | import StoreKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | //============================================= 17 | // MARK:- App Launch 18 | //============================================= 19 | 20 | private func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: Any]?) -> Bool { 21 | if #available(iOS 11.3, *) { 22 | SKAdNetwork.registerAppForAdNetworkAttribution() 23 | } 24 | return true 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "size" : "29x29", 15 | "idiom" : "iphone", 16 | "filename" : "icon-v4vc-58.png", 17 | "scale" : "2x" 18 | }, 19 | { 20 | "size" : "29x29", 21 | "idiom" : "iphone", 22 | "filename" : "icon-v4vc-87.png", 23 | "scale" : "3x" 24 | }, 25 | { 26 | "size" : "40x40", 27 | "idiom" : "iphone", 28 | "filename" : "icon-v4vc-80.png", 29 | "scale" : "2x" 30 | }, 31 | { 32 | "size" : "40x40", 33 | "idiom" : "iphone", 34 | "filename" : "icon-v4vc-120.png", 35 | "scale" : "3x" 36 | }, 37 | { 38 | "size" : "60x60", 39 | "idiom" : "iphone", 40 | "filename" : "icon-v4vc-120-1.png", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "size" : "60x60", 45 | "idiom" : "iphone", 46 | "filename" : "icon-v4vc@3x.png", 47 | "scale" : "3x" 48 | }, 49 | { 50 | "idiom" : "ipad", 51 | "size" : "20x20", 52 | "scale" : "1x" 53 | }, 54 | { 55 | "idiom" : "ipad", 56 | "size" : "20x20", 57 | "scale" : "2x" 58 | }, 59 | { 60 | "size" : "29x29", 61 | "idiom" : "ipad", 62 | "filename" : "icon-v4vc-29.png", 63 | "scale" : "1x" 64 | }, 65 | { 66 | "size" : "29x29", 67 | "idiom" : "ipad", 68 | "filename" : "icon-v4vc-58-1.png", 69 | "scale" : "2x" 70 | }, 71 | { 72 | "size" : "40x40", 73 | "idiom" : "ipad", 74 | "filename" : "icon-v4vc-40.png", 75 | "scale" : "1x" 76 | }, 77 | { 78 | "size" : "40x40", 79 | "idiom" : "ipad", 80 | "filename" : "icon-v4vc-80-1.png", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "size" : "76x76", 85 | "idiom" : "ipad", 86 | "filename" : "icon-v4vc-76.png", 87 | "scale" : "1x" 88 | }, 89 | { 90 | "size" : "76x76", 91 | "idiom" : "ipad", 92 | "filename" : "icon-v4vc-152.png", 93 | "scale" : "2x" 94 | }, 95 | { 96 | "size" : "83.5x83.5", 97 | "idiom" : "ipad", 98 | "filename" : "icon-v4vc-83.5@2x.png", 99 | "scale" : "2x" 100 | }, 101 | { 102 | "size" : "1024x1024", 103 | "idiom" : "ios-marketing", 104 | "filename" : "icon-v4vc-1024.png", 105 | "scale" : "1x" 106 | } 107 | ], 108 | "info" : { 109 | "version" : 1, 110 | "author" : "xcode" 111 | } 112 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-1024.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-120-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-120.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-152.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-29.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-40.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-58-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-58.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-76.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-80-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-80.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-83.5@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc-87.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/AppIcon.appiconset/icon-v4vc@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "bg@1x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "bg@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "bg@2x-1.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Background.imageset/bg@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn-v4vc-press@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn-v4vc-press@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "btn-v4vc-press@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button-Press.imageset/btn-v4vc-press@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "btn-v4vc@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "btn-v4vc@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "btn-v4vc@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Button.imageset/btn-v4vc@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "icon-coin@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "icon-coin@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "icon-coin@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Coin.imageset/icon-coin@3x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "extent" : "full-screen", 5 | "idiom" : "iphone", 6 | "subtype" : "736h", 7 | "filename" : "default-1242x2208.png", 8 | "minimum-system-version" : "8.0", 9 | "orientation" : "portrait", 10 | "scale" : "3x" 11 | }, 12 | { 13 | "extent" : "full-screen", 14 | "idiom" : "iphone", 15 | "subtype" : "736h", 16 | "filename" : "default-2208x1242.png", 17 | "minimum-system-version" : "8.0", 18 | "orientation" : "landscape", 19 | "scale" : "3x" 20 | }, 21 | { 22 | "extent" : "full-screen", 23 | "idiom" : "iphone", 24 | "subtype" : "667h", 25 | "filename" : "default-750x1334.png", 26 | "minimum-system-version" : "8.0", 27 | "orientation" : "portrait", 28 | "scale" : "2x" 29 | }, 30 | { 31 | "orientation" : "portrait", 32 | "idiom" : "iphone", 33 | "extent" : "full-screen", 34 | "minimum-system-version" : "7.0", 35 | "filename" : "default-640x960.png", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "extent" : "full-screen", 40 | "idiom" : "iphone", 41 | "subtype" : "retina4", 42 | "filename" : "default-640x1136.png", 43 | "minimum-system-version" : "7.0", 44 | "orientation" : "portrait", 45 | "scale" : "2x" 46 | }, 47 | { 48 | "orientation" : "portrait", 49 | "idiom" : "ipad", 50 | "extent" : "full-screen", 51 | "minimum-system-version" : "7.0", 52 | "filename" : "default-ipad-768x1024.png", 53 | "scale" : "1x" 54 | }, 55 | { 56 | "orientation" : "landscape", 57 | "idiom" : "ipad", 58 | "extent" : "full-screen", 59 | "minimum-system-version" : "7.0", 60 | "filename" : "default-ipad-1024x768.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "orientation" : "portrait", 65 | "idiom" : "ipad", 66 | "extent" : "full-screen", 67 | "minimum-system-version" : "7.0", 68 | "filename" : "default-ipad-1536x2048.png", 69 | "scale" : "2x" 70 | }, 71 | { 72 | "orientation" : "landscape", 73 | "idiom" : "ipad", 74 | "extent" : "full-screen", 75 | "minimum-system-version" : "7.0", 76 | "filename" : "default-ipad-2048x1536.png", 77 | "scale" : "2x" 78 | } 79 | ], 80 | "info" : { 81 | "version" : 1, 82 | "author" : "xcode" 83 | } 84 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-1242x2208.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-2208x1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-2208x1242.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x1136.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-640x960.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-750x1334.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1024x768.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-1536x2048.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-2048x1536.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchImage.launchimage/default-ipad-768x1024.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "launch-screen@1x.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "launch-screen@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "launch-screen@2x-1.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@1x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/LaunchScreenImage.imageset/launch-screen@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "text-v4vc@2x.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "text-v4vc@2x-1.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "text-v4vc@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@2x-1.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@2x.png -------------------------------------------------------------------------------- /SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/SampleApps/Swift/AdColonyV4VC/AdColonyV4VC/Images.xcassets/Text.imageset/text-v4vc@3x.png -------------------------------------------------------------------------------- /W-9 Form.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdColony/AdColony-iOS-SDK/20aecd991b09e79b59fd2d84b0e821967c0c2975/W-9 Form.pdf --------------------------------------------------------------------------------