├── .github └── workflows │ ├── build.yml │ └── build │ └── build.sh ├── .gitignore ├── ObjectiveC ├── AdvancedExample │ ├── AdvancedExample.xcodeproj │ │ └── project.pbxproj │ ├── AdvancedExample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Launch Image.launchimage │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LiveStream.h │ │ ├── LiveStream.m │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── Stream.h │ │ ├── Stream.m │ │ ├── VODStream.h │ │ ├── VODStream.m │ │ ├── VideoViewController.h │ │ ├── VideoViewController.m │ │ └── main.m │ └── Podfile ├── BasicExample │ ├── BasicExample.xcodeproj │ │ └── project.pbxproj │ ├── Podfile │ └── app │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── PodservingExample │ ├── Podfile │ ├── PodservingExample.xcodeproj │ │ └── project.pbxproj │ └── app │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m └── VideoStitcherExample │ ├── Podfile │ ├── VideoStitcherExample.xcodeproj │ └── project.pbxproj │ └── app │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── README.md ├── Swift ├── AdvancedExample │ ├── AdvancedExample.xcodeproj │ │ └── project.pbxproj │ ├── AdvancedExample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon.imagestack │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Launch Image.launchimage │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LiveStream.swift │ │ ├── MainViewController.swift │ │ ├── Stream.swift │ │ ├── VODStream.swift │ │ └── VideoPlayerViewController.swift │ └── Podfile ├── BasicExample │ ├── BasicExample.xcodeproj │ │ └── project.pbxproj │ ├── Podfile │ └── app │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift ├── PodservingExample │ ├── Podfile │ ├── PodservingExample.xcodeproj │ │ └── project.pbxproj │ └── app │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift ├── SGAIClientSideExample │ ├── Podfile │ ├── SGAIClientSideExample.xcodeproj │ │ └── project.pbxproj │ └── app │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift └── VideoStitcherExample │ ├── Podfile │ ├── VideoStitcherExample.xcodeproj │ └── project.pbxproj │ └── app │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift └── make_release.sh /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/.github/workflows/build/build.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/AppDelegate.h -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/AppDelegate.m -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/Launch Image.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Assets.xcassets/Launch Image.launchimage/Contents.json -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Info.plist -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/LiveStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/LiveStream.h -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/LiveStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/LiveStream.m -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/MainViewController.h -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/MainViewController.m -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Stream.h -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/Stream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/Stream.m -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/VODStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/VODStream.h -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/VODStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/VODStream.m -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/VideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/VideoViewController.h -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/VideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/VideoViewController.m -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/AdvancedExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/AdvancedExample/main.m -------------------------------------------------------------------------------- /ObjectiveC/AdvancedExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/AdvancedExample/Podfile -------------------------------------------------------------------------------- /ObjectiveC/BasicExample/BasicExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/BasicExample/BasicExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ObjectiveC/BasicExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/BasicExample/Podfile -------------------------------------------------------------------------------- /ObjectiveC/BasicExample/app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/BasicExample/app/AppDelegate.h -------------------------------------------------------------------------------- /ObjectiveC/BasicExample/app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/BasicExample/app/AppDelegate.m -------------------------------------------------------------------------------- /ObjectiveC/BasicExample/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/BasicExample/app/Info.plist -------------------------------------------------------------------------------- /ObjectiveC/BasicExample/app/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/BasicExample/app/ViewController.h -------------------------------------------------------------------------------- /ObjectiveC/BasicExample/app/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/BasicExample/app/ViewController.m -------------------------------------------------------------------------------- /ObjectiveC/BasicExample/app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/BasicExample/app/main.m -------------------------------------------------------------------------------- /ObjectiveC/PodservingExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/PodservingExample/Podfile -------------------------------------------------------------------------------- /ObjectiveC/PodservingExample/PodservingExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/PodservingExample/PodservingExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ObjectiveC/PodservingExample/app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/PodservingExample/app/AppDelegate.h -------------------------------------------------------------------------------- /ObjectiveC/PodservingExample/app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/PodservingExample/app/AppDelegate.m -------------------------------------------------------------------------------- /ObjectiveC/PodservingExample/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/PodservingExample/app/Info.plist -------------------------------------------------------------------------------- /ObjectiveC/PodservingExample/app/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/PodservingExample/app/ViewController.h -------------------------------------------------------------------------------- /ObjectiveC/PodservingExample/app/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/PodservingExample/app/ViewController.m -------------------------------------------------------------------------------- /ObjectiveC/PodservingExample/app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/PodservingExample/app/main.m -------------------------------------------------------------------------------- /ObjectiveC/VideoStitcherExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/VideoStitcherExample/Podfile -------------------------------------------------------------------------------- /ObjectiveC/VideoStitcherExample/VideoStitcherExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/VideoStitcherExample/VideoStitcherExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ObjectiveC/VideoStitcherExample/app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/VideoStitcherExample/app/AppDelegate.h -------------------------------------------------------------------------------- /ObjectiveC/VideoStitcherExample/app/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/VideoStitcherExample/app/AppDelegate.m -------------------------------------------------------------------------------- /ObjectiveC/VideoStitcherExample/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/VideoStitcherExample/app/Info.plist -------------------------------------------------------------------------------- /ObjectiveC/VideoStitcherExample/app/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/VideoStitcherExample/app/ViewController.h -------------------------------------------------------------------------------- /ObjectiveC/VideoStitcherExample/app/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/VideoStitcherExample/app/ViewController.m -------------------------------------------------------------------------------- /ObjectiveC/VideoStitcherExample/app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/ObjectiveC/VideoStitcherExample/app/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/README.md -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/AppDelegate.swift -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Assets.xcassets/Launch Image.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Assets.xcassets/Launch Image.launchimage/Contents.json -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Info.plist -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/LiveStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/LiveStream.swift -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/MainViewController.swift -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/Stream.swift -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/VODStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/VODStream.swift -------------------------------------------------------------------------------- /Swift/AdvancedExample/AdvancedExample/VideoPlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/AdvancedExample/VideoPlayerViewController.swift -------------------------------------------------------------------------------- /Swift/AdvancedExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/AdvancedExample/Podfile -------------------------------------------------------------------------------- /Swift/BasicExample/BasicExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/BasicExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift/BasicExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/Podfile -------------------------------------------------------------------------------- /Swift/BasicExample/app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/AppDelegate.swift -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swift/BasicExample/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/Info.plist -------------------------------------------------------------------------------- /Swift/BasicExample/app/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/BasicExample/app/ViewController.swift -------------------------------------------------------------------------------- /Swift/PodservingExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/Podfile -------------------------------------------------------------------------------- /Swift/PodservingExample/PodservingExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/PodservingExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift/PodservingExample/app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/AppDelegate.swift -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swift/PodservingExample/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/Info.plist -------------------------------------------------------------------------------- /Swift/PodservingExample/app/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/PodservingExample/app/ViewController.swift -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/Podfile -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/SGAIClientSideExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/SGAIClientSideExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/AppDelegate.swift -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/Info.plist -------------------------------------------------------------------------------- /Swift/SGAIClientSideExample/app/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/SGAIClientSideExample/app/ViewController.swift -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/Podfile -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/VideoStitcherExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/VideoStitcherExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/AppDelegate.swift -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/Info.plist -------------------------------------------------------------------------------- /Swift/VideoStitcherExample/app/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/Swift/VideoStitcherExample/app/ViewController.swift -------------------------------------------------------------------------------- /make_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-ima-tvos-dai/HEAD/make_release.sh --------------------------------------------------------------------------------