├── .editorconfig ├── .github ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo-angular ├── App_Resources │ ├── Android │ │ ├── app.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-ldpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-mdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-nodpi │ │ │ └── splash_screen.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ │ ├── layout │ │ │ └── cast_mini_controller_fragment.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── iOS │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-1125h.png │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape-X.png │ │ │ ├── Default-Landscape-XR.png │ │ │ ├── Default-Landscape-XS-Max.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait-XR.png │ │ │ ├── Default-Portrait-XS-Max.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ └── LaunchScreen.AspectFill@3x.png │ │ └── LaunchScreen.Center.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-Center.png │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ └── LaunchScreen.Center@3x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig ├── nativescript.config.ts ├── package.json ├── references.d.ts ├── src │ ├── app.css │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ ├── fonts │ │ ├── fa-regular-400.ttf │ │ └── fa-solid-900.ttf │ └── main.ts ├── tsconfig.json ├── webpack.config.custom.js └── webpack.config.js ├── demo ├── app │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ ├── settings.gradle │ │ │ ├── settings.json │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── layout │ │ │ │ └── cast_mini_controller_fragment.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-50@2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-57@2x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-72@2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-667h@2x.png │ │ │ │ ├── Default-736h@3x.png │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Landscape@2x.png │ │ │ │ ├── Default-Landscape@3x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ └── LaunchScreen-Center@2x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ ├── app-root.xml │ ├── app.css │ ├── app.ts │ ├── fonts │ │ ├── fa-regular-400.ttf │ │ └── fa-solid-900.ttf │ ├── main-page.ts │ ├── main-page.xml │ ├── main-view-model.ts │ ├── package-lock.json │ └── package.json ├── nativescript.config.ts ├── package.json ├── references.d.ts ├── tsconfig.json ├── webpack.config.custom.js └── webpack.config.js ├── publish ├── pack.sh ├── package-lock.json ├── package.json └── publish.sh ├── src ├── .npmignore ├── android-declarations.d.ts ├── android.d.ts ├── angular │ ├── build.ts │ ├── dist │ │ ├── index.d.ts │ │ ├── nativescript-cast-angular.d.ts │ │ ├── nativescript-cast-angular.metadata.json │ │ └── package.json │ ├── index.ts │ ├── package.json │ └── tsconfig.angular.json ├── cast-options-provider.android.ts ├── cast.android.ts ├── cast.common.ts ├── cast.ios.ts ├── cast.types.ts ├── media-queue-callback.android.ts ├── media-queue-delegate.ios.ts ├── media-router-callback.android.ts ├── package-lock.json ├── package.json ├── platforms │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── README.md │ │ ├── include.gradle │ │ └── nativescript_cast.aar │ └── ios │ │ ├── GoogleCast.framework │ │ ├── GoogleCast │ │ ├── GoogleCastCoreResources.bundle │ │ │ ├── CastFrameworkDB.momd │ │ │ │ ├── CastFrameworkDB.mom │ │ │ │ ├── CastFrameworkDB01.mom │ │ │ │ ├── CastFrameworkDB02.mom │ │ │ │ ├── CastFrameworkDB03.mom │ │ │ │ ├── CastFrameworkDB04.mom │ │ │ │ ├── CastFrameworkDB05.mom │ │ │ │ ├── CastFrameworkDB06.mom │ │ │ │ ├── CastFrameworkDB06.omo │ │ │ │ └── VersionInfo.plist │ │ │ ├── af.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ar.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── bg.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── bn.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ca.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── cs.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── da.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── de.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── el.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── en.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── en_GB.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── es.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── es_419.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── et.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── fa.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── fi.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── fil.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── hi.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── hr.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── hu.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── hy.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── id.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── is.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── it.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── iw.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ka.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── km.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ko.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── lo.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── lt.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── lv.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── mk.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── mn.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── mr.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ms.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── my.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ne.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── no.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── pl.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── pt.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── pt_PT.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ro.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── si.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── sk.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── sl.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── sr.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── sv.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── sw.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── ta.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── th.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── tr.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── uk.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── vi.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── zh.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ ├── zh_CN.lproj │ │ │ │ └── CoreLocalizable.strings │ │ │ └── zh_TW.lproj │ │ │ │ └── CoreLocalizable.strings │ │ ├── GoogleCastUIResources.bundle │ │ │ ├── Base.lproj │ │ │ │ └── CastComponents.storyboardc │ │ │ │ │ ├── 4HD-aa-FNo-view-1HP-BM-J3I.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── 6is-ze-qoP-view-Vah-jq-ZgN.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── 9V7-ce-5KJ-view-WQF-my-40r.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── C87-rF-Kff-view-Z93-bw-eCT.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── CastContainer.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── CastInstructions.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── DeviceConnectionNavigation.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── ExpandedMediaControlsViewController.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── GuestModePairingViewController.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MediaTrackSelectionController.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── MediaTrackSelectionNavigation.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── MiniMediaControlsViewController.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── Osx-kD-8NW-view-pIN-ie-DHT.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── a4H-bv-VbH-view-Xbz-9K-eDJ.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ ├── egs-hj-bEX-view-MTY-Nw-q8O.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ │ │ └── mzQ-08-M2L-view-QcC-yO-nhF.nib │ │ │ │ │ ├── objects-11.0+.nib │ │ │ │ │ └── runtime.nib │ │ │ ├── Icons │ │ │ │ ├── audio_track_48pt.png │ │ │ │ ├── audio_track_48pt@2x.png │ │ │ │ ├── audio_track_48pt@3x.png │ │ │ │ ├── cast_connected_24pt.png │ │ │ │ ├── cast_connected_24pt@2x.png │ │ │ │ ├── cast_connected_24pt@3x.png │ │ │ │ ├── cast_disconnected_24pt.png │ │ │ │ ├── cast_disconnected_24pt@2x.png │ │ │ │ ├── cast_disconnected_24pt@3x.png │ │ │ │ ├── cast_on0.png │ │ │ │ ├── cast_on0@2x.png │ │ │ │ ├── cast_on0@3x.png │ │ │ │ ├── cast_on1.png │ │ │ │ ├── cast_on1@2x.png │ │ │ │ ├── cast_on1@3x.png │ │ │ │ ├── cast_on2.png │ │ │ │ ├── cast_on2@2x.png │ │ │ │ ├── cast_on2@3x.png │ │ │ │ ├── closed_caption_36pt.png │ │ │ │ ├── closed_caption_36pt@2x.png │ │ │ │ ├── closed_caption_36pt@3x.png │ │ │ │ ├── closed_caption_48pt.png │ │ │ │ ├── closed_caption_48pt@2x.png │ │ │ │ ├── closed_caption_48pt@3x.png │ │ │ │ ├── collapse_arrow_24pt.png │ │ │ │ ├── collapse_arrow_24pt@2x.png │ │ │ │ ├── collapse_arrow_24pt@3x.png │ │ │ │ ├── forward_30_36pt.png │ │ │ │ ├── forward_30_36pt@2x.png │ │ │ │ ├── forward_30_36pt@3x.png │ │ │ │ ├── forward_30_48pt.png │ │ │ │ ├── forward_30_48pt@2x.png │ │ │ │ ├── forward_30_48pt@3x.png │ │ │ │ ├── hardware_speaker_24pt.png │ │ │ │ ├── hardware_speaker_24pt@2x.png │ │ │ │ ├── hardware_speaker_24pt@3x.png │ │ │ │ ├── hardware_speaker_group_24pt.png │ │ │ │ ├── hardware_speaker_group_24pt@2x.png │ │ │ │ ├── hardware_speaker_group_24pt@3x.png │ │ │ │ ├── hardware_tv_24pt.png │ │ │ │ ├── hardware_tv_24pt@2x.png │ │ │ │ ├── hardware_tv_24pt@3x.png │ │ │ │ ├── ic_close_icon.png │ │ │ │ ├── ic_close_icon@2x.png │ │ │ │ ├── ic_close_icon@3x.png │ │ │ │ ├── pause_48pt.png │ │ │ │ ├── pause_48pt@2x.png │ │ │ │ ├── pause_48pt@3x.png │ │ │ │ ├── pause_circle_filled_64pt.png │ │ │ │ ├── pause_circle_filled_64pt@2x.png │ │ │ │ ├── pause_circle_filled_64pt@3x.png │ │ │ │ ├── play_48pt.png │ │ │ │ ├── play_48pt@2x.png │ │ │ │ ├── play_48pt@3x.png │ │ │ │ ├── play_circle_filled_64pt.png │ │ │ │ ├── play_circle_filled_64pt@2x.png │ │ │ │ ├── play_circle_filled_64pt@3x.png │ │ │ │ ├── replay_30_36pt.png │ │ │ │ ├── replay_30_36pt@2x.png │ │ │ │ ├── replay_30_36pt@3x.png │ │ │ │ ├── replay_30_48pt.png │ │ │ │ ├── replay_30_48pt@2x.png │ │ │ │ ├── replay_30_48pt@3x.png │ │ │ │ ├── skip_next_36pt.png │ │ │ │ ├── skip_next_36pt@2x.png │ │ │ │ ├── skip_next_36pt@3x.png │ │ │ │ ├── skip_next_48pt.png │ │ │ │ ├── skip_next_48pt@2x.png │ │ │ │ ├── skip_next_48pt@3x.png │ │ │ │ ├── skip_previous_36pt.png │ │ │ │ ├── skip_previous_36pt@2x.png │ │ │ │ ├── skip_previous_36pt@3x.png │ │ │ │ ├── skip_previous_48pt.png │ │ │ │ ├── skip_previous_48pt@2x.png │ │ │ │ ├── skip_previous_48pt@3x.png │ │ │ │ ├── sliderthumb_focused_light.png │ │ │ │ ├── sliderthumb_focused_light@2x.png │ │ │ │ ├── sliderthumb_focused_light@3x.png │ │ │ │ ├── sliderthumb_normal_light.png │ │ │ │ ├── sliderthumb_normal_light@2x.png │ │ │ │ ├── sliderthumb_normal_light@3x.png │ │ │ │ ├── stop_36pt.png │ │ │ │ ├── stop_36pt@2x.png │ │ │ │ ├── stop_36pt@3x.png │ │ │ │ ├── stop_48pt.png │ │ │ │ ├── stop_48pt@2x.png │ │ │ │ ├── stop_48pt@3x.png │ │ │ │ ├── volume_mute_36pt.png │ │ │ │ ├── volume_mute_36pt@2x.png │ │ │ │ ├── volume_mute_36pt@3x.png │ │ │ │ ├── volume_mute_48pt.png │ │ │ │ ├── volume_mute_48pt@2x.png │ │ │ │ ├── volume_mute_48pt@3x.png │ │ │ │ ├── volume_off_36pt.png │ │ │ │ ├── volume_off_36pt@2x.png │ │ │ │ ├── volume_off_36pt@3x.png │ │ │ │ ├── volume_off_48pt.png │ │ │ │ ├── volume_off_48pt@2x.png │ │ │ │ ├── volume_off_48pt@3x.png │ │ │ │ ├── volume_up_36pt.png │ │ │ │ ├── volume_up_36pt@2x.png │ │ │ │ ├── volume_up_36pt@3x.png │ │ │ │ ├── volume_up_48pt.png │ │ │ │ ├── volume_up_48pt@2x.png │ │ │ │ └── volume_up_48pt@3x.png │ │ │ ├── af.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ar.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── bg.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── bn.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ca.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── cs.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── da.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── de.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── el.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── en.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── en_GB.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── es.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── es_419.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── et.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── fa.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── fi.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── fil.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── fr.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── hi.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── hr.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── hu.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── hy.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── id.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── is.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── it.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── iw.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ja.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ka.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── km.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ko.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── lo.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── lt.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── lv.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── mk.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── mn.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── mr.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ms.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── my.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ne.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── nl.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── no.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── pl.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── pt.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── pt_PT.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ro.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ru.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── si.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── sk.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── sl.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── sr.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── sv.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── sw.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── ta.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── th.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── tr.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── uk.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── vi.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── zh.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ ├── zh_CN.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ │ └── zh_TW.lproj │ │ │ │ ├── CastComponents.strings │ │ │ │ └── UILocalizable.strings │ │ ├── Headers │ │ │ ├── GCKAdBreakClipInfo.h │ │ │ ├── GCKAdBreakInfo.h │ │ │ ├── GCKAdBreakStatus.h │ │ │ ├── GCKApplicationMetadata.h │ │ │ ├── GCKCastChannel.h │ │ │ ├── GCKCastContext+UI.h │ │ │ ├── GCKCastContext.h │ │ │ ├── GCKCastOptions.h │ │ │ ├── GCKCastSession.h │ │ │ ├── GCKColor.h │ │ │ ├── GCKCommon.h │ │ │ ├── GCKCredentialsData.h │ │ │ ├── GCKDefines.h │ │ │ ├── GCKDevice.h │ │ │ ├── GCKDeviceProvider+Protected.h │ │ │ ├── GCKDeviceProvider.h │ │ │ ├── GCKDiscoveryCriteria.h │ │ │ ├── GCKDiscoveryManager.h │ │ │ ├── GCKDynamicDevice.h │ │ │ ├── GCKError.h │ │ │ ├── GCKGenericChannel.h │ │ │ ├── GCKImage.h │ │ │ ├── GCKJSONUtils.h │ │ │ ├── GCKLaunchOptions.h │ │ │ ├── GCKLogger.h │ │ │ ├── GCKLoggerCommon.h │ │ │ ├── GCKLoggerFilter.h │ │ │ ├── GCKMediaCommon.h │ │ │ ├── GCKMediaInformation.h │ │ │ ├── GCKMediaLiveSeekableRange.h │ │ │ ├── GCKMediaLoadOptions.h │ │ │ ├── GCKMediaLoadRequestData.h │ │ │ ├── GCKMediaMetadata.h │ │ │ ├── GCKMediaQueue.h │ │ │ ├── GCKMediaQueueContainerMetadata.h │ │ │ ├── GCKMediaQueueData.h │ │ │ ├── GCKMediaQueueItem.h │ │ │ ├── GCKMediaQueueLoadOptions.h │ │ │ ├── GCKMediaRequestItem.h │ │ │ ├── GCKMediaSeekOptions.h │ │ │ ├── GCKMediaStatus.h │ │ │ ├── GCKMediaTextTrackStyle.h │ │ │ ├── GCKMediaTrack.h │ │ │ ├── GCKMultizoneDevice.h │ │ │ ├── GCKMultizoneStatus.h │ │ │ ├── GCKNetworkAddress.h │ │ │ ├── GCKOpenURLOptions.h │ │ │ ├── GCKRemoteMediaClient+Protected.h │ │ │ ├── GCKRemoteMediaClient.h │ │ │ ├── GCKRequest.h │ │ │ ├── GCKSenderApplicationInfo.h │ │ │ ├── GCKSession+Protected.h │ │ │ ├── GCKSession.h │ │ │ ├── GCKSessionManager.h │ │ │ ├── GCKSessionOptions.h │ │ │ ├── GCKSessionTraits.h │ │ │ ├── GCKUIButton.h │ │ │ ├── GCKUICastButton.h │ │ │ ├── GCKUICastContainerViewController.h │ │ │ ├── GCKUIDeviceVolumeController.h │ │ │ ├── GCKUIExpandedMediaControlsViewController.h │ │ │ ├── GCKUIImageCache.h │ │ │ ├── GCKUIImageHints.h │ │ │ ├── GCKUIImagePicker.h │ │ │ ├── GCKUIMediaButtonBarProtocol.h │ │ │ ├── GCKUIMediaController.h │ │ │ ├── GCKUIMediaTrackSelectionViewController.h │ │ │ ├── GCKUIMiniMediaControlsViewController.h │ │ │ ├── GCKUIMultistateButton.h │ │ │ ├── GCKUIPlayPauseToggleController.h │ │ │ ├── GCKUIPlaybackRateController.h │ │ │ ├── GCKUIStreamPositionController.h │ │ │ ├── GCKUIStyle.h │ │ │ ├── GCKUIStyleAttributes.h │ │ │ ├── GCKUIUtils.h │ │ │ ├── GCKVastAdsRequest.h │ │ │ ├── GCKVideoInfo.h │ │ │ ├── GoogleCast.h │ │ │ ├── NSDictionary+GCKAdditions.h │ │ │ ├── NSMutableDictionary+GCKAdditions.h │ │ │ └── NSTimer+GCKAdditions.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ │ ├── Info.plist │ │ ├── Podfile │ │ ├── README.md │ │ ├── app.entitlements │ │ ├── build.xcconfig │ │ └── typings │ │ └── objc!GoogleCast.d.ts ├── references.d.ts ├── remote-media-client-callback.android.ts ├── remote-media-client-listener.ios.ts ├── remote-media-client-progress-listener.android.ts ├── scripts │ └── build-native.js ├── session-manager-listener.android.ts ├── session-manager-listener.ios.ts └── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | max_line_length = 140 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .history 3 | .idea 4 | .DS_Store 5 | *.esm.json 6 | *.js 7 | *.js.map 8 | *.log 9 | src/*.d.ts 10 | !src/index.d.ts 11 | !src/references.d.ts 12 | !src/android.d.ts 13 | !src/android-declarations.d.ts 14 | !src/scripts/*.js 15 | !seed-tests/*.js 16 | seed-tests/seed-copy/**/*.* 17 | seed-tests/seed-copy-new-git-repo/**/*.* 18 | !demo/karma.conf.js 19 | !demo/app/tests/*.js 20 | demo/*.d.ts 21 | !demo/references.d.ts 22 | !demo/webpack.config.* 23 | !demo-angular/webpack.config.* 24 | demo/lib 25 | demo/platforms 26 | demo-angular/platforms 27 | node_modules 28 | publish/src 29 | publish/package 30 | demo/report/report.html 31 | demo/report/stats.json 32 | NOTES.md 33 | LOG.md 34 | */.migration_backup 35 | */.update_backup 36 | -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- 1 | // Add your native dependencies here: 2 | 3 | // Uncomment to add recyclerview-v7 dependency 4 | //dependencies { 5 | // implementation 'com.android.support:recyclerview-v7:+' 6 | //} 7 | 8 | // If you want to add something to be applied before applying plugins' include.gradle files 9 | // e.g. project.ext.googlePlayServicesVersion = "15.0.1" 10 | // create a file named before-plugins.gradle in the current directory and place it there 11 | 12 | android { 13 | defaultConfig { 14 | minSdkVersion 17 15 | generatedDensities = [] 16 | } 17 | aaptOptions { 18 | additionalParameters "--no-version-vectors" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/layout/cast_mini_controller_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #F5F5F5 4 | #757575 5 | #33B5E5 6 | #272734 7 | -------------------------------------------------------------------------------- /demo-angular/App_Resources/Android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Cast Demo Angular 4 | Cast Demo 5 | 4F8B3483 6 | 7 | -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-1125h.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-X.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XR.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape-XS-Max.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XR.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait-XS-Max.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchScreen-AspectFill.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchScreen-AspectFill@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchScreen.AspectFill@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen.AspectFill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen.AspectFill@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchScreen-Center.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchScreen-Center@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchScreen.Center@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen.Center@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen.Center@3x.png -------------------------------------------------------------------------------- /demo-angular/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- 1 | // You can add custom settings here 2 | // for example you can uncomment the following line to force distribution code signing 3 | // CODE_SIGN_IDENTITY = iPhone Distribution 4 | // To build for device with Xcode 8 you need to specify your development team. More info: https://developer.apple.com/library/prerelease/content/releasenotes/DeveloperTools/RN-Xcode/Introduction.html 5 | // DEVELOPMENT_TEAM = YOUR_TEAM_ID; 6 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 7 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 8 | -------------------------------------------------------------------------------- /demo-angular/nativescript.config.ts: -------------------------------------------------------------------------------- 1 | import { NativeScriptConfig } from '@nativescript/core'; 2 | 3 | export default { 4 | id: 'org.nativescript.cast', 5 | appPath: 'src', 6 | appResourcesPath: 'App_Resources', 7 | android: { 8 | v8Flags: '--expose_gc', 9 | markingMode: 'none', 10 | maxLogcatObjectSize: 2048, 11 | }, 12 | webpackConfigPath: 'webpack.config.custom.js', 13 | } as NativeScriptConfig; 14 | -------------------------------------------------------------------------------- /demo-angular/references.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | -------------------------------------------------------------------------------- /demo-angular/src/app.css: -------------------------------------------------------------------------------- 1 | @import "~@nativescript/theme/css/core.css"; 2 | @import "~@nativescript/theme/css/default.css"; 3 | 4 | .far { 5 | font-family: 'Font Awesome 5 Free', 'fa-regular-400'; 6 | font-weight: 400; 7 | } 8 | 9 | .fas { 10 | font-family: 'Font Awesome 5 Free', 'fa-solid-900'; 11 | font-weight: 900; 12 | } 13 | 14 | ActionBar { 15 | background: var(--light-accent); 16 | color: #fff; 17 | } 18 | 19 | .controls { 20 | margin: 10 16; 21 | } 22 | 23 | .controls > Button { 24 | font-size: 16; 25 | margin: 0; 26 | font-weight: bold; 27 | } 28 | 29 | Label { 30 | margin: 0 16; 31 | } 32 | 33 | .json { 34 | font-family: monospace; 35 | font-size: 12; 36 | background-color: #ccc; 37 | border-color: #111; 38 | margin: 10 16; 39 | } 40 | -------------------------------------------------------------------------------- /demo-angular/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { NativeScriptRouterModule } from '@nativescript/angular'; 3 | import { Routes } from '@angular/router'; 4 | 5 | import { HomeComponent } from '~/app/home/home.component'; 6 | 7 | const routes: Routes = [ 8 | { 9 | path: '', 10 | redirectTo: '/home', 11 | pathMatch: 'full', 12 | }, 13 | { 14 | path: 'home', 15 | component: HomeComponent, 16 | } 17 | ]; 18 | 19 | @NgModule({ 20 | imports: [NativeScriptRouterModule.forRoot(routes)], 21 | exports: [NativeScriptRouterModule] 22 | }) 23 | export class AppRoutingModule { } 24 | -------------------------------------------------------------------------------- /demo-angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /demo-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'ns-app', 5 | moduleId: module.id, 6 | templateUrl: './app.component.html' 7 | }) 8 | export class AppComponent { } 9 | -------------------------------------------------------------------------------- /demo-angular/src/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/src/app/home/home.component.css -------------------------------------------------------------------------------- /demo-angular/src/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/src/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /demo-angular/src/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo-angular/src/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /demo-angular/webpack.config.custom.js: -------------------------------------------------------------------------------- 1 | const webpackConfig = require("./webpack.config"); 2 | 3 | module.exports = env => { 4 | env = env || {}; 5 | env.appComponents = env.appComponents || []; 6 | if (env.android) { 7 | env.appComponents.push("@codelab/nativescript-cast/cast-options-provider"); 8 | } 9 | 10 | const config = webpackConfig(env); 11 | return config; 12 | }; 13 | -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- 1 | // Add your native dependencies here: 2 | 3 | // Uncomment to add recyclerview-v7 dependency 4 | //dependencies { 5 | // compile 'com.android.support:recyclerview-v7:+' 6 | //} 7 | 8 | android { 9 | defaultConfig { 10 | generatedDensities = [] 11 | } 12 | aaptOptions { 13 | additionalParameters "--no-version-vectors" 14 | } 15 | } 16 | 17 | def settingsGradlePath 18 | 19 | if(project.hasProperty("appResourcesPath")){ 20 | settingsGradlePath = "$project.appResourcesPath/Android/settings.gradle"; 21 | } else { 22 | settingsGradlePath = "$rootDir/../../app/App_Resources/Android/settings.gradle"; 23 | } 24 | 25 | def settingsGradleFile = new File(settingsGradlePath); 26 | 27 | if(settingsGradleFile.exists()) 28 | { 29 | apply from: settingsGradleFile; 30 | } 31 | -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/settings.json: -------------------------------------------------------------------------------- 1 | {"appId":"org.nativescript.cast","minSdkVersion":null,"targetSdkVersion":null} -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/Android/src/main/res/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/layout/cast_mini_controller_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #03A9F4 4 | #0288D1 5 | @color/ns_primary 6 | 7 | -------------------------------------------------------------------------------- /demo/app/App_Resources/Android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Cast Demo 4 | Cast Demo 5 | 4F8B3483 6 | 7 | -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchScreen-AspectFill.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchScreen-AspectFill@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchScreen-Center.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchScreen-Center@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /demo/app/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- 1 | // You can add custom settings here 2 | // for example you can uncomment the following line to force distribution code signing 3 | // CODE_SIGN_IDENTITY = iPhone Distribution 4 | // DEVELOPMENT_TEAM = YOUR_TEAM_ID; 5 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 6 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 7 | -------------------------------------------------------------------------------- /demo/app/app-root.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /demo/app/app.css: -------------------------------------------------------------------------------- 1 | @import "~@nativescript/theme/css/core.css"; 2 | @import "~@nativescript/theme/css/default.css"; 3 | 4 | .far { 5 | font-family: 'Font Awesome 5 Free', 'fa-regular-400'; 6 | font-weight: 400; 7 | } 8 | 9 | .fas { 10 | font-family: 'Font Awesome 5 Free', 'fa-solid-900'; 11 | font-weight: 900; 12 | } 13 | 14 | ActionBar { 15 | background: var(--light-accent); 16 | color: #fff; 17 | } 18 | 19 | .controls { 20 | margin: 10 16; 21 | } 22 | 23 | .controls > Button { 24 | font-size: 16; 25 | margin: 0; 26 | font-weight: bold; 27 | } 28 | 29 | Label { 30 | margin: 0 16; 31 | } 32 | 33 | .json { 34 | font-family: monospace; 35 | font-size: 12; 36 | background-color: #ccc; 37 | border-color: #111; 38 | margin: 10 16; 39 | } 40 | -------------------------------------------------------------------------------- /demo/app/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /demo/app/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/demo/app/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /demo/app/main-page.ts: -------------------------------------------------------------------------------- 1 | import { EventData, Page } from '@nativescript/core'; 2 | import { MainViewModel } from './main-view-model'; 3 | 4 | // Event handler for Page 'loaded' event attached in main-page.xml 5 | export function pageLoaded(args: EventData) { 6 | // Get the event sender 7 | const page = args.object; 8 | 9 | if (!page.bindingContext) { 10 | page.bindingContext = new MainViewModel(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /demo/nativescript.config.ts: -------------------------------------------------------------------------------- 1 | import { NativeScriptConfig } from '@nativescript/core'; 2 | 3 | export default { 4 | id: 'org.nativescript.cast', 5 | main: 'app/app.js', 6 | appResourcesPath: 'app/App_Resources', 7 | android: { 8 | v8Flags: '--expose_gc', 9 | markingMode: 'none', 10 | maxLogcatObjectSize: 2048, 11 | }, 12 | webpackConfigPath: 'webpack.config.custom.js', 13 | } as NativeScriptConfig; 14 | -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "org.nativescript.cast", 3 | "main": "app", 4 | "scripts": { 5 | "build.plugin": "cd ../src && npm run build", 6 | "ci.tslint": "npm i && tslint --config '../tslint.json' 'app/**/*.ts' --exclude '**/node_modules/**'" 7 | }, 8 | "dependencies": { 9 | "@codelab/nativescript-cast": "file:../src", 10 | "@nativescript/core": "^7.0.12", 11 | "@nativescript/theme": "^3.0.0", 12 | "child_process": "^1.0.2", 13 | "lodash": "^4.17.15", 14 | "tape": "^5.1.1" 15 | }, 16 | "devDependencies": { 17 | "@nativescript/android": "7.0.1", 18 | "@nativescript/ios": "7.0.4", 19 | "@nativescript/types": "^7.0.4", 20 | "@nativescript/webpack": "^3.0.8", 21 | "typescript": "^4.0.5" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /demo/references.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2017", 4 | "module": "esnext", 5 | "moduleResolution": "node", 6 | "declaration": false, 7 | "removeComments": false, 8 | "noLib": false, 9 | "emitDecoratorMetadata": true, 10 | "experimentalDecorators": true, 11 | "lib": [ 12 | "es2017", 13 | "dom", 14 | ], 15 | "pretty": true, 16 | "allowUnreachableCode": false, 17 | "allowUnusedLabels": false, 18 | "noEmitHelpers": true, 19 | "noEmitOnError": false, 20 | "noImplicitAny": false, 21 | "noImplicitReturns": true, 22 | "noImplicitUseStrict": false, 23 | "noFallthroughCasesInSwitch": true, 24 | "baseUrl": ".", 25 | "paths": { 26 | "~/*": [ 27 | "app/*" 28 | ] 29 | } 30 | }, 31 | "exclude": [ 32 | "node_modules", 33 | "platforms" 34 | ], 35 | "compileOnSave": false 36 | } 37 | -------------------------------------------------------------------------------- /demo/webpack.config.custom.js: -------------------------------------------------------------------------------- 1 | const webpackConfig = require("./webpack.config"); 2 | 3 | module.exports = env => { 4 | env = env || {}; 5 | env.appComponents = env.appComponents || []; 6 | if (env.android) { 7 | env.appComponents.push("@codelab/nativescript-cast/cast-options-provider"); 8 | } 9 | 10 | const config = webpackConfig(env); 11 | return config; 12 | }; 13 | -------------------------------------------------------------------------------- /publish/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nativescript-publish", 3 | "version": "1.0.0", 4 | "description": "Publish helper", 5 | "devDependencies": { 6 | "ncp": "^2.0.0", 7 | "rimraf": "^2.5.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /publish/publish.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PACK_DIR=package; 4 | 5 | publish() { 6 | cd $PACK_DIR 7 | echo 'Publishing to npm...' 8 | npm publish --access public *.tgz 9 | } 10 | 11 | ./pack.sh && publish 12 | -------------------------------------------------------------------------------- /src/.npmignore: -------------------------------------------------------------------------------- 1 | *.map 2 | *.ts 3 | !*.d.ts 4 | tsconfig.json 5 | scripts/* 6 | platforms/android/* 7 | !platforms/android/include.gradle 8 | !platforms/android/*.aar 9 | !platforms/android/*.jar -------------------------------------------------------------------------------- /src/android-declarations.d.ts: -------------------------------------------------------------------------------- 1 | declare module native { export class Array { constructor(); length: number; [index: number]: T; } } 2 | 3 | import globalAndroid = android; 4 | 5 | -------------------------------------------------------------------------------- /src/angular/build.ts: -------------------------------------------------------------------------------- 1 | const ngPackage = require('ng-packagr'); 2 | const path = require('path'); 3 | const fs = require('fs-extra'); 4 | 5 | const packageName = 'nativescript-cast'; 6 | 7 | // build angular package 8 | function buildAngular() { 9 | ngPackage 10 | .ngPackagr() 11 | .forProject(path.join('angular', 'package.json')) 12 | .withTsConfig(path.join('angular', 'tsconfig.angular.json')) 13 | .build() 14 | .then(() => { 15 | copyAngularDist(); 16 | }) 17 | .catch((error) => { 18 | console.error(error); 19 | process.exit(1); 20 | }); 21 | } 22 | 23 | // copy angular ng-packagr output to dist/packages/{name} 24 | function copyAngularDist() { 25 | fs.copy(path.join('angular')) 26 | .then(() => { 27 | console.log(`${packageName} angular built successfully.`); 28 | }) 29 | .catch((err) => console.error(err)); 30 | } 31 | 32 | buildAngular(); 33 | -------------------------------------------------------------------------------- /src/angular/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare class NativescriptCastModule { 2 | } 3 | -------------------------------------------------------------------------------- /src/angular/dist/nativescript-cast-angular.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Generated bundle index. Do not edit. 3 | */ 4 | export * from './index'; 5 | -------------------------------------------------------------------------------- /src/angular/dist/nativescript-cast-angular.metadata.json: -------------------------------------------------------------------------------- 1 | {"__symbolic":"module","version":4,"metadata":{"NativescriptCastModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":4,"character":1}}],"members":{}}},"origins":{"NativescriptCastModule":"./index"},"importAs":"nativescript-cast-angular"} -------------------------------------------------------------------------------- /src/angular/dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nativescript-cast-angular", 3 | "main": "bundles/nativescript-cast-angular.umd.js", 4 | "module": "fesm2015/nativescript-cast-angular.js", 5 | "es2015": "fesm2015/nativescript-cast-angular.js", 6 | "esm2015": "esm2015/nativescript-cast-angular.js", 7 | "fesm2015": "fesm2015/nativescript-cast-angular.js", 8 | "typings": "nativescript-cast-angular.d.ts", 9 | "metadata": "nativescript-cast-angular.metadata.json", 10 | "sideEffects": false, 11 | "dependencies": { 12 | "tslib": "^2.0.0" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/angular/index.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from "@angular/core"; 2 | import { registerElement } from "@nativescript/angular"; 3 | import { CastButton } from "@codelab/nativescript-cast"; 4 | 5 | @NgModule() 6 | export class NativescriptCastModule {} 7 | 8 | registerElement("CastButton", () => CastButton); 9 | -------------------------------------------------------------------------------- /src/angular/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nativescript-cast-angular", 3 | "ngPackage": { 4 | "lib": { 5 | "entryFile": "index.ts", 6 | "umdModuleIds": { 7 | "@nativescript/core": "ns-core", 8 | "@nativescript/angular": "ns-angular", 9 | "@codelab/nativescript-cast": "ns-cast" 10 | } 11 | }, 12 | "whitelistedNonPeerDependencies": [ 13 | "." 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/angular/tsconfig.angular.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../node_modules/ng-packagr/lib/ts/conf/tsconfig.ngc.json", 3 | "compilerOptions": { 4 | "types": ["node"], 5 | "baseUrl": ".", 6 | "paths": { 7 | "@codelab/nativescript-cast": ["../"] 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/cast.common.ts: -------------------------------------------------------------------------------- 1 | import { View } from '@nativescript/core'; 2 | import { Visibility } from '@nativescript/core/ui/styling/style-properties'; 3 | 4 | export * from './cast'; 5 | 6 | export abstract class CastButtonBase extends View { 7 | public static validMetadataKeys = [ 8 | 'creationDate', 9 | 'releaseDate', 10 | 'broadcastDate', 11 | 'title', 12 | 'subtitle', 13 | 'artist', 14 | 'albumArtist', 15 | 'albumTitle', 16 | 'composer', 17 | 'discNumber', 18 | 'trackNumber', 19 | 'seasonNumber', 20 | 'episodeNumber', 21 | 'seriesTitle', 22 | 'studio', 23 | 'width', 24 | 'height', 25 | 'locationName', 26 | 'locationLatitude', 27 | 'locationLongitude', 28 | ]; 29 | 30 | public static castEvent = 'cast'; 31 | 32 | visibility: Visibility; 33 | 34 | public sendEvent(eventName: string, data?: any) { 35 | this.notify({ 36 | eventName, 37 | object: this, 38 | data 39 | }); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/platforms/android/README.md: -------------------------------------------------------------------------------- 1 | # Android permissions and dependencies 2 | 3 | * (Optional) Use AndroidManifest.xml to describe any permissions, features or other configuration specifics required or used by your plugin for Android. 4 | NOTE: The NativeScript CLI will not resolve any contradicting or duplicate entries during the merge. After the plugin is installed, you need to manually resolve such issues. 5 | 6 | * (Optional) Use include.gradle configuration to describe any native dependencies. If there are no such, this file can be removed. For more information, see the [include.gradle Specification](http://docs.nativescript.org/plugins/plugins#includegradle-specification) 7 | 8 | 9 | [Read more about nativescript plugins](http://docs.nativescript.org/plugins/plugins) -------------------------------------------------------------------------------- /src/platforms/android/include.gradle: -------------------------------------------------------------------------------- 1 | /* Include.gradle configuration: http://docs.nativescript.org/plugins/plugins#includegradle-specification */ 2 | 3 | android { 4 | 5 | } 6 | 7 | dependencies { 8 | implementation 'androidx.appcompat:appcompat:1.1.0' 9 | implementation 'androidx.mediarouter:mediarouter:1.1.0' 10 | implementation 'com.google.android.gms:play-services-cast-framework:19.0.0' 11 | } 12 | -------------------------------------------------------------------------------- /src/platforms/android/nativescript_cast.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/android/nativescript_cast.aar -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCast -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB.mom -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB01.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB01.mom -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB02.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB02.mom -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB03.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB03.mom -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB04.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB04.mom -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB05.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB05.mom -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB06.mom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB06.mom -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB06.omo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/CastFrameworkDB06.omo -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/VersionInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/CastFrameworkDB.momd/VersionInfo.plist -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/af.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/af.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ar.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ar.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/bg.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/bg.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/bn.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/bn.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ca.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ca.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/cs.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/cs.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/da.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/da.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/de.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/de.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/el.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/el.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/en.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/en.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/en_GB.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/en_GB.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/es.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/es.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/es_419.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/es_419.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/et.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/et.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/fa.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/fa.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/fi.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/fi.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/fil.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/fil.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/fr.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/fr.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/hi.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/hi.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/hr.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/hr.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/hu.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/hu.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/hy.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/hy.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/id.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/id.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/is.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/is.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/it.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/it.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/iw.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/iw.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ja.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ja.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ka.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ka.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/km.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/km.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ko.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ko.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/lo.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/lo.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/lt.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/lt.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/lv.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/lv.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/mk.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/mk.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/mn.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/mn.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/mr.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/mr.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ms.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ms.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/my.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/my.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ne.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ne.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/nl.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/nl.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/no.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/no.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/pl.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/pl.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/pt.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/pt.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/pt_PT.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/pt_PT.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ro.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ro.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ru.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ru.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/si.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/si.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sk.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sk.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sl.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sl.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sr.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sr.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sv.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sv.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sw.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/sw.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ta.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/ta.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/th.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/th.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/tr.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/tr.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/uk.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/uk.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/vi.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/vi.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/zh.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/zh.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/zh_CN.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/zh_CN.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/zh_TW.lproj/CoreLocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastCoreResources.bundle/zh_TW.lproj/CoreLocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/4HD-aa-FNo-view-1HP-BM-J3I.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/4HD-aa-FNo-view-1HP-BM-J3I.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/4HD-aa-FNo-view-1HP-BM-J3I.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/4HD-aa-FNo-view-1HP-BM-J3I.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/6is-ze-qoP-view-Vah-jq-ZgN.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/6is-ze-qoP-view-Vah-jq-ZgN.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/6is-ze-qoP-view-Vah-jq-ZgN.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/6is-ze-qoP-view-Vah-jq-ZgN.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/9V7-ce-5KJ-view-WQF-my-40r.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/9V7-ce-5KJ-view-WQF-my-40r.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/9V7-ce-5KJ-view-WQF-my-40r.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/9V7-ce-5KJ-view-WQF-my-40r.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/C87-rF-Kff-view-Z93-bw-eCT.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/C87-rF-Kff-view-Z93-bw-eCT.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/C87-rF-Kff-view-Z93-bw-eCT.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/C87-rF-Kff-view-Z93-bw-eCT.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/CastContainer.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/CastContainer.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/CastContainer.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/CastContainer.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/CastInstructions.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/CastInstructions.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/CastInstructions.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/CastInstructions.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/DeviceConnectionNavigation.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/DeviceConnectionNavigation.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/DeviceConnectionNavigation.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/DeviceConnectionNavigation.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/ExpandedMediaControlsViewController.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/ExpandedMediaControlsViewController.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/ExpandedMediaControlsViewController.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/ExpandedMediaControlsViewController.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/GuestModePairingViewController.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/GuestModePairingViewController.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/GuestModePairingViewController.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/GuestModePairingViewController.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/Info.plist -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MediaTrackSelectionController.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MediaTrackSelectionController.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MediaTrackSelectionController.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MediaTrackSelectionController.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MediaTrackSelectionNavigation.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MediaTrackSelectionNavigation.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MediaTrackSelectionNavigation.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MediaTrackSelectionNavigation.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MiniMediaControlsViewController.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MiniMediaControlsViewController.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MiniMediaControlsViewController.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/MiniMediaControlsViewController.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/Osx-kD-8NW-view-pIN-ie-DHT.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/Osx-kD-8NW-view-pIN-ie-DHT.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/Osx-kD-8NW-view-pIN-ie-DHT.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/Osx-kD-8NW-view-pIN-ie-DHT.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/a4H-bv-VbH-view-Xbz-9K-eDJ.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/a4H-bv-VbH-view-Xbz-9K-eDJ.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/a4H-bv-VbH-view-Xbz-9K-eDJ.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/a4H-bv-VbH-view-Xbz-9K-eDJ.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/egs-hj-bEX-view-MTY-Nw-q8O.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/egs-hj-bEX-view-MTY-Nw-q8O.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/egs-hj-bEX-view-MTY-Nw-q8O.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/egs-hj-bEX-view-MTY-Nw-q8O.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/mzQ-08-M2L-view-QcC-yO-nhF.nib/objects-11.0+.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/mzQ-08-M2L-view-QcC-yO-nhF.nib/objects-11.0+.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/mzQ-08-M2L-view-QcC-yO-nhF.nib/runtime.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Base.lproj/CastComponents.storyboardc/mzQ-08-M2L-view-QcC-yO-nhF.nib/runtime.nib -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/audio_track_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/audio_track_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/audio_track_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/audio_track_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/audio_track_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/audio_track_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_connected_24pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_connected_24pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_connected_24pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_connected_24pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_connected_24pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_connected_24pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_disconnected_24pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_disconnected_24pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_disconnected_24pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_disconnected_24pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_disconnected_24pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_disconnected_24pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on0.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on0@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on0@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on1.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on1@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on1@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on2.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on2@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/cast_on2@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/closed_caption_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/collapse_arrow_24pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/collapse_arrow_24pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/collapse_arrow_24pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/collapse_arrow_24pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/collapse_arrow_24pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/collapse_arrow_24pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/forward_30_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_24pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_24pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_24pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_24pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_24pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_24pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_group_24pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_group_24pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_group_24pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_group_24pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_group_24pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_speaker_group_24pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_tv_24pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_tv_24pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_tv_24pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_tv_24pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_tv_24pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/hardware_tv_24pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/ic_close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/ic_close_icon.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/ic_close_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/ic_close_icon@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/ic_close_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/ic_close_icon@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_circle_filled_64pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_circle_filled_64pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_circle_filled_64pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_circle_filled_64pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_circle_filled_64pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/pause_circle_filled_64pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_circle_filled_64pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_circle_filled_64pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_circle_filled_64pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_circle_filled_64pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_circle_filled_64pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/play_circle_filled_64pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/replay_30_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_next_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/skip_previous_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_focused_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_focused_light.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_focused_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_focused_light@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_focused_light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_focused_light@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_normal_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_normal_light.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_normal_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_normal_light@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_normal_light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/sliderthumb_normal_light@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/stop_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_mute_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_off_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_36pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_36pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_36pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_48pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_48pt.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_48pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_48pt@2x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_48pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/Icons/volume_up_48pt@3x.png -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/af.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/af.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/af.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/af.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ar.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ar.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ar.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ar.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/bg.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/bg.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/bg.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/bg.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/bn.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/bn.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/bn.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/bn.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ca.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ca.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ca.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ca.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/cs.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/cs.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/cs.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/cs.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/da.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/da.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/da.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/da.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/de.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/de.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/de.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/de.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/el.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/el.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/el.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/el.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/en.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/en.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/en.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/en.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/en_GB.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/en_GB.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/en_GB.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/en_GB.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/es.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/es.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/es.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/es.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/es_419.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/es_419.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/es_419.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/es_419.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/et.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/et.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/et.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/et.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fa.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fa.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fa.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fa.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fi.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fi.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fi.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fi.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fil.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fil.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fil.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fil.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fr.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fr.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fr.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/fr.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hi.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hi.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hi.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hi.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hr.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hr.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hr.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hr.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hu.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hu.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hu.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hu.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hy.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hy.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hy.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/hy.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/id.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/id.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/id.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/id.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/is.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/is.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/is.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/is.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/it.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/it.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/it.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/it.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/iw.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/iw.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/iw.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/iw.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ja.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ja.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ja.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ja.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ka.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ka.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ka.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ka.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/km.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/km.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/km.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/km.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ko.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ko.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ko.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ko.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lo.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lo.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lo.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lo.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lt.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lt.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lt.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lt.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lv.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lv.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lv.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/lv.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mk.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mk.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mk.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mk.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mn.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mn.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mn.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mn.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mr.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mr.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mr.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/mr.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ms.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ms.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ms.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ms.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/my.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/my.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/my.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/my.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ne.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ne.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ne.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ne.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/nl.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/nl.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/nl.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/nl.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/no.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/no.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/no.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/no.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pl.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pl.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pl.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pl.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pt.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pt.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pt.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pt.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pt_PT.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pt_PT.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pt_PT.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/pt_PT.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ro.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ro.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ro.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ro.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ru.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ru.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ru.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ru.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/si.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/si.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/si.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/si.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sk.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sk.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sk.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sk.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sl.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sl.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sl.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sl.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sr.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sr.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sr.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sr.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sv.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sv.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sv.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sv.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sw.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sw.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sw.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/sw.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ta.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ta.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ta.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/ta.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/th.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/th.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/th.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/th.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/tr.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/tr.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/tr.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/tr.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/uk.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/uk.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/uk.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/uk.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/vi.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/vi.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/vi.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/vi.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh_CN.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh_CN.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh_CN.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh_CN.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh_TW.lproj/CastComponents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh_TW.lproj/CastComponents.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh_TW.lproj/UILocalizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/GoogleCastUIResources.bundle/zh_TW.lproj/UILocalizable.strings -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/Headers/GCKLoggerCommon.h: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Google Inc. 2 | 3 | /** 4 | * @file GCKLoggerCommon.h 5 | * GCKLoggerLevel enum. 6 | */ 7 | 8 | #import 9 | 10 | #import 11 | 12 | /** 13 | * @enum GCKLoggerLevel 14 | * Logging levels. 15 | * 16 | * @since 3.1 17 | */ 18 | typedef NS_ENUM(NSInteger, GCKLoggerLevel) { 19 | /** No logging level (for backward compatibility). */ 20 | GCKLoggerLevelNone = 0, 21 | /** Verbose messages. */ 22 | GCKLoggerLevelVerbose = 1, 23 | /** Debug messages. */ 24 | GCKLoggerLevelDebug = 2, 25 | /** Informational messages. */ 26 | GCKLoggerLevelInfo = 3, 27 | /** Warning messages. */ 28 | GCKLoggerLevelWarning = 4, 29 | /** Error messages. */ 30 | GCKLoggerLevelError = 5, 31 | /** Assertion failure messages. */ 32 | GCKLoggerLevelAssert = 6 33 | }; 34 | -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/Headers/GCKMultizoneDevice.h: -------------------------------------------------------------------------------- 1 | // Copyright 2015 Google Inc. 2 | 3 | #import 4 | 5 | #import 6 | 7 | #import 8 | 9 | NS_ASSUME_NONNULL_BEGIN 10 | 11 | /** 12 | * A member device of a multizone group. 13 | * 14 | * @since 3.1 15 | */ 16 | GCK_EXPORT 17 | @interface GCKMultizoneDevice : GCKDynamicDevice 18 | 19 | /** The device volume level. */ 20 | @property(nonatomic, assign, readonly) float volumeLevel; 21 | 22 | /** Whether the device is muted. */ 23 | @property(nonatomic, assign, readonly) BOOL muted; 24 | 25 | - (instancetype)init NS_UNAVAILABLE; 26 | 27 | @end // GCKMultizoneDevice 28 | 29 | NS_ASSUME_NONNULL_END 30 | -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/Headers/GCKSessionOptions.h: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Google Inc. 2 | 3 | #import 4 | #import 5 | 6 | #import 7 | 8 | /** 9 | * A dictionary for specifying session options. 10 | * 11 | * @since 4.0 12 | */ 13 | typedef NSDictionary *> GCKSessionOptions; 14 | -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/Headers/GCKUIMultistateButton.h: -------------------------------------------------------------------------------- 1 | // Copyright 2015 Google Inc. 2 | 3 | /** @cond ENABLE_FEATURE_GUI */ 4 | 5 | #import 6 | 7 | #import 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | /** 13 | * A subclass of UIButton that supports multiple states. 14 | * Assign an image to each state with the GCKUIMultistateButton::setImage:forButtonState: method. 15 | * 16 | * @since 4.0 17 | */ 18 | GCK_EXPORT 19 | @interface GCKUIMultistateButton : UIButton 20 | 21 | /** 22 | * The button's application state. 23 | */ 24 | @property(nonatomic, assign) NSUInteger buttonState; 25 | 26 | /** 27 | * Sets the image to display for a given button state. 28 | * 29 | * @param image The image. 30 | * @param buttonState The button state. 31 | */ 32 | - (void)setImage:(UIImage *)image forButtonState:(NSUInteger)buttonState; 33 | 34 | @end 35 | 36 | NS_ASSUME_NONNULL_END 37 | 38 | /** @endcond */ 39 | -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/Headers/GCKUIStyle.h: -------------------------------------------------------------------------------- 1 | // Copyright 2016 Google Inc. 2 | 3 | /** @cond ENABLE_FEATURE_GUI */ 4 | 5 | #import 6 | #import 7 | 8 | #import 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | /** 14 | * 15 | * @since 3.3 16 | */ 17 | GCK_EXPORT 18 | @interface GCKUIStyle : NSObject 19 | 20 | /** 21 | * Returns the GCKUIStyle singleton instance. 22 | */ 23 | + (GCKUIStyle *)sharedInstance; 24 | 25 | /** 26 | * Forces a refresh of all currently visible views, so that any changes to the styling will 27 | * take effect immediately. 28 | */ 29 | - (void)applyStyle; 30 | 31 | /** 32 | * The root of the styling attributes tree. 33 | */ 34 | @property(nonatomic, strong, readonly) GCKUIStyleAttributesCastViews *castViews; 35 | 36 | @end 37 | 38 | NS_ASSUME_NONNULL_END 39 | 40 | /** @endcond */ 41 | -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/Headers/GCKUIUtils.h: -------------------------------------------------------------------------------- 1 | // Copyright 2015 Google Inc. 2 | 3 | /** @cond ENABLE_FEATURE_GUI */ 4 | 5 | #import 6 | 7 | #import 8 | #import 9 | 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | /** 13 | * User interface utility methods. 14 | * 15 | * @since 3.0 16 | */ 17 | GCK_EXPORT 18 | @interface GCKUIUtils : NSObject 19 | 20 | /** 21 | * Returns the currently active view controller, by navigating through the view controller 22 | * hierarchy beginning with the root view controller. 23 | */ 24 | + (nullable UIViewController *)currentViewController; 25 | 26 | /** Formats a time interval in MM:SS or H:MM:SS format. */ 27 | + (NSString *)timeIntervalAsString:(NSTimeInterval)timeInterval; 28 | 29 | /** 30 | * Formats a local time based on the current locale. 31 | * 32 | * @since 4.3.4 33 | */ 34 | + (NSString *)localTimeAsString:(NSTimeInterval)localTime; 35 | 36 | @end 37 | 38 | NS_ASSUME_NONNULL_END 39 | 40 | /** @endcond */ 41 | -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/GoogleCast.framework/Info.plist -------------------------------------------------------------------------------- /src/platforms/ios/GoogleCast.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module GoogleCast { 2 | umbrella header "GoogleCast.h" 3 | 4 | export * 5 | module * { export * } 6 | 7 | link framework "CFNetwork" 8 | link framework "CoreBluetooth" 9 | link framework "CoreText" 10 | link framework "Foundation" 11 | link framework "MediaAccessibility" 12 | link framework "Security" 13 | link framework "SystemConfiguration" 14 | link framework "CoreGraphics" 15 | link framework "MediaPlayer" 16 | link framework "QuartzCore" 17 | link framework "UIKit" 18 | } 19 | 20 | -------------------------------------------------------------------------------- /src/platforms/ios/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | NSMicrophoneUsageDescription 7 | This app uses uses microphone access to listen for ultrasonic tokens 8 | when pairing with nearby Cast devices 9 | NSBluetoothPeripheralUsageDescription 10 | This app uses Bluetooth to discover nearby Cast devices. 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '10.0' 2 | -------------------------------------------------------------------------------- /src/platforms/ios/README.md: -------------------------------------------------------------------------------- 1 | # iOS permissions and dependencies 2 | 3 | 4 | * (Optional) Use Info.plist to describe any permissions, features or other configuration specifics required or used by your plugin for iOS. 5 | NOTE: The NativeScript CLI will not resolve any contradicting or duplicate entries during the merge. After the plugin is installed, you need to manually resolve such issues. 6 | * (Optional) Use build.xcconfig configuration to describe any plugin the native dependencies. If there are no such, this file can be removed. For more information, see the [build.xcconfig Specification section](http://docs.nativescript.org/plugins/plugins#buildxcconfig-specification). 7 | 8 | 9 | [Read more about nativescript plugins](http://docs.nativescript.org/plugins/plugins) -------------------------------------------------------------------------------- /src/platforms/ios/app.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.networking.wifi-info 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/platforms/ios/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lochstar/nativescript-cast/461d9ee3e34f0384a9ddb2fd07da0ca6f136ae6f/src/platforms/ios/build.xcconfig -------------------------------------------------------------------------------- /src/references.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | -------------------------------------------------------------------------------- /src/remote-media-client-callback.android.ts: -------------------------------------------------------------------------------- 1 | import { CastButton } from './cast.android'; 2 | 3 | @NativeClass() 4 | class RemoteMediaClientCallback extends com.google.android.gms.cast.framework.media.RemoteMediaClient.Callback { 5 | public owner: CastButton; 6 | 7 | constructor(owner) { 8 | super(); 9 | 10 | this.owner = owner; 11 | 12 | return global.__native(this); 13 | } 14 | 15 | public onStatusUpdated() { 16 | this.owner.onMediaStatusUpdate(); 17 | } 18 | 19 | public onMetadataUpdated() { 20 | } 21 | 22 | public onQueueStatusUpdated() { 23 | } 24 | 25 | public onPreloadStatusUpdated() { 26 | } 27 | 28 | public onSendingRemoteMediaRequest() { 29 | } 30 | 31 | public onAdBreakStatusUpdated() { 32 | } 33 | } 34 | 35 | export { RemoteMediaClientCallback }; 36 | -------------------------------------------------------------------------------- /src/scripts/build-native.js: -------------------------------------------------------------------------------- 1 | const { exec } = require('child_process'); 2 | const semver = require('semver'); 3 | 4 | exec('ns --version', (err, stdout, stderr) => { 5 | if (err) { 6 | // node couldn't execute the command 7 | console.log(`tns --version err: ${err}`); 8 | return; 9 | } 10 | 11 | const tnsVersion = semver.major(stdout); 12 | 13 | // execute 'tns plugin build' for {N} version > 4. This command builds .aar in platforms/android folder. 14 | if (tnsVersion >= 4) { 15 | console.log(`executing 'ns plugin build'`); 16 | exec('ns plugin build', (err, stdout, stderr) => { 17 | if (err) { 18 | // node couldn't execute the command 19 | console.log(`${err}`); 20 | return; 21 | } 22 | }); 23 | } 24 | }); 25 | --------------------------------------------------------------------------------