├── .DS_Store ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── Replay ├── .DS_Store ├── Replay.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── npitchandi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── rajivs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── npitchandi.xcuserdatad │ │ └── xcschemes │ │ │ ├── Replay.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── rajivs.xcuserdatad │ │ └── xcschemes │ │ ├── Replay.xcscheme │ │ └── xcschememanagement.plist ├── Replay │ ├── .DS_Store │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Replay11_.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Replay11_.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Replay11_.png │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Replay11.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Replay11.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Replay11.png │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ ├── AppleTV-TopShelf-2320x.png │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ ├── AppleTV-TopShelf-1920@1x.png │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ └── ReplayLaunchImage.png │ ├── Base.lproj │ │ └── Main.storyboard │ ├── BridgingHeader.h │ ├── Info.plist │ └── ViewController.swift ├── ReplayTests │ ├── Info.plist │ └── ReplayTests.swift └── ReplayUITests │ ├── Info.plist │ └── ReplayUITests.swift └── Replay_.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/README.md -------------------------------------------------------------------------------- /Replay/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/.DS_Store -------------------------------------------------------------------------------- /Replay/Replay.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Replay/Replay.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Replay/Replay.xcodeproj/project.xcworkspace/xcuserdata/npitchandi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay.xcodeproj/project.xcworkspace/xcuserdata/npitchandi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Replay/Replay.xcodeproj/project.xcworkspace/xcuserdata/rajivs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay.xcodeproj/project.xcworkspace/xcuserdata/rajivs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Replay/Replay.xcodeproj/xcuserdata/npitchandi.xcuserdatad/xcschemes/Replay.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay.xcodeproj/xcuserdata/npitchandi.xcuserdatad/xcschemes/Replay.xcscheme -------------------------------------------------------------------------------- /Replay/Replay.xcodeproj/xcuserdata/npitchandi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay.xcodeproj/xcuserdata/npitchandi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Replay/Replay.xcodeproj/xcuserdata/rajivs.xcuserdatad/xcschemes/Replay.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay.xcodeproj/xcuserdata/rajivs.xcuserdatad/xcschemes/Replay.xcscheme -------------------------------------------------------------------------------- /Replay/Replay.xcodeproj/xcuserdata/rajivs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay.xcodeproj/xcuserdata/rajivs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Replay/Replay/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/.DS_Store -------------------------------------------------------------------------------- /Replay/Replay/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/AppDelegate.swift -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Replay11_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Replay11_.png -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Replay11_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Replay11_.png -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Replay11_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Replay11_.png -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Replay11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Replay11.png -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Replay11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Replay11.png -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Replay11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Replay11.png -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/AppleTV-TopShelf-2320x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/AppleTV-TopShelf-2320x.png -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/AppleTV-TopShelf-1920@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/AppleTV-TopShelf-1920@1x.png -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Replay/Replay/Assets.xcassets/LaunchImage.launchimage/ReplayLaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Assets.xcassets/LaunchImage.launchimage/ReplayLaunchImage.png -------------------------------------------------------------------------------- /Replay/Replay/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Replay/Replay/BridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/BridgingHeader.h -------------------------------------------------------------------------------- /Replay/Replay/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/Info.plist -------------------------------------------------------------------------------- /Replay/Replay/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/Replay/ViewController.swift -------------------------------------------------------------------------------- /Replay/ReplayTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/ReplayTests/Info.plist -------------------------------------------------------------------------------- /Replay/ReplayTests/ReplayTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/ReplayTests/ReplayTests.swift -------------------------------------------------------------------------------- /Replay/ReplayUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/ReplayUITests/Info.plist -------------------------------------------------------------------------------- /Replay/ReplayUITests/ReplayUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay/ReplayUITests/ReplayUITests.swift -------------------------------------------------------------------------------- /Replay_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnissa-archive/replay-app-for-tvos/HEAD/Replay_.png --------------------------------------------------------------------------------