├── .gitignore ├── Demo └── yg_mediaDemo │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ ├── GVRSDK │ │ ├── Libraries │ │ │ ├── libCardboardSDK_arm64.a │ │ │ ├── libCardboardSDK_armv7.a │ │ │ ├── libCardboardSDK_i386.a │ │ │ └── libCardboardSDK_x86_64.a │ │ ├── Resources │ │ │ ├── CardboardSDK.bundle │ │ │ │ ├── Assets.car │ │ │ │ ├── Info.plist │ │ │ │ ├── ar.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── arrowRight.png │ │ │ │ ├── ca.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── cardboardLogotype.png │ │ │ │ ├── continueButton.png │ │ │ │ ├── cs.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── da.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── de.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── el.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── en.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── en_AU.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── en_GB.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── en_IN.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── es.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── es_MX.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── fi.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── fr.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── gearButton.png │ │ │ │ ├── he.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── hi.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── hr.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── hu.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── ic_arrow_back_white@1x.png │ │ │ │ ├── ic_arrow_back_white@2x.png │ │ │ │ ├── ic_arrow_back_white@3x.png │ │ │ │ ├── ic_settings_white@1x.png │ │ │ │ ├── ic_settings_white@2x.png │ │ │ │ ├── ic_settings_white@3x.png │ │ │ │ ├── id.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── it.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── iw.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── ja.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── ko.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── nb.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── nl.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── pl.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── pt.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── qrSample@1x.png │ │ │ │ ├── qrSample@2x.png │ │ │ │ ├── qrSample@3x.png │ │ │ │ ├── ro.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── rotateInstructions.mp4 │ │ │ │ ├── ru.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── sk.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── sv.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── th.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── tickmarks.png │ │ │ │ ├── tr.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── uk.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── vi.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ │ └── CardboardSDK.strings │ │ │ ├── GoogleKitCore.bundle │ │ │ │ ├── Resources │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── bg.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── en_AU.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── en_GB.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── en_IN.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── es_419.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── es_MX.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── fa.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── hi.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── hy.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── id.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── iw.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── ka.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── kk.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── km.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── lo.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── lt.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── lv.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── mn.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── ms.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── no.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── pt.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── sq.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── sr.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── vi.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── GoogleKitCore.strings │ │ │ │ ├── button_blue.png │ │ │ │ ├── button_blue@2x.png │ │ │ │ ├── button_blue@3x.png │ │ │ │ ├── button_blue_highlighted.png │ │ │ │ ├── button_blue_highlighted@2x.png │ │ │ │ ├── button_blue_highlighted@3x.png │ │ │ │ ├── button_dark.png │ │ │ │ ├── button_dark@2x.png │ │ │ │ ├── button_dark@3x.png │ │ │ │ ├── button_dark_highlighted.png │ │ │ │ ├── button_dark_highlighted@2x.png │ │ │ │ ├── button_dark_highlighted@3x.png │ │ │ │ ├── button_light.png │ │ │ │ ├── button_light@2x.png │ │ │ │ ├── button_light@3x.png │ │ │ │ ├── button_light_highlighted.png │ │ │ │ ├── button_light_highlighted@2x.png │ │ │ │ ├── button_light_highlighted@3x.png │ │ │ │ ├── button_red.png │ │ │ │ ├── button_red@2x.png │ │ │ │ ├── button_red@3x.png │ │ │ │ ├── button_red_highlighted.png │ │ │ │ ├── button_red_highlighted@2x.png │ │ │ │ ├── button_red_highlighted@3x.png │ │ │ │ ├── cell_background_selected_dark.png │ │ │ │ ├── cell_background_selected_dark@2x.png │ │ │ │ ├── cell_disclosure_accessory.png │ │ │ │ ├── cell_disclosure_accessory@2x.png │ │ │ │ ├── cell_disclosure_accessory@3x.png │ │ │ │ ├── cell_divider.png │ │ │ │ ├── cell_divider@2x.png │ │ │ │ ├── checkbox.png │ │ │ │ ├── checkbox@2x.png │ │ │ │ ├── checkbox_checked.png │ │ │ │ ├── checkbox_checked@2x.png │ │ │ │ ├── checkmark.png │ │ │ │ ├── checkmark@2x.png │ │ │ │ ├── vertical_divider.png │ │ │ │ └── vertical_divider@2x.png │ │ │ ├── GoogleKitDialogs.bundle │ │ │ │ ├── Resources │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── bg.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── en_AU.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── en_GB.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── en_IN.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── es_419.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── es_MX.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── fa.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── hi.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── hy.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── id.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── iw.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── ka.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── kk.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── km.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── lo.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── lt.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── lv.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── mn.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── ms.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── no.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── pt.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── sq.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── sr.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── vi.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── GoogleKitDialogs.strings │ │ │ │ ├── arrow_bottom.png │ │ │ │ ├── arrow_bottom@2x.png │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_left@2x.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── arrow_right@2x.png │ │ │ │ ├── arrow_top.png │ │ │ │ ├── arrow_top@2x.png │ │ │ │ ├── background.png │ │ │ │ ├── background@2x.png │ │ │ │ ├── bottom.png │ │ │ │ ├── bottom@2x.png │ │ │ │ ├── corner_bottom_left.png │ │ │ │ ├── corner_bottom_left@2x.png │ │ │ │ ├── corner_bottom_right.png │ │ │ │ ├── corner_bottom_right@2x.png │ │ │ │ ├── corner_top_left.png │ │ │ │ ├── corner_top_left@2x.png │ │ │ │ ├── corner_top_right.png │ │ │ │ ├── corner_top_right@2x.png │ │ │ │ ├── ic_check.png │ │ │ │ ├── ic_check@2x.png │ │ │ │ ├── ic_check@3x.png │ │ │ │ ├── ic_close.png │ │ │ │ ├── ic_close@2x.png │ │ │ │ ├── ic_close@3x.png │ │ │ │ ├── ic_comment.png │ │ │ │ ├── ic_comment@2x.png │ │ │ │ ├── ic_comment@3x.png │ │ │ │ ├── ic_delete.png │ │ │ │ ├── ic_delete@2x.png │ │ │ │ ├── ic_delete@3x.png │ │ │ │ ├── ic_email.png │ │ │ │ ├── ic_email@2x.png │ │ │ │ ├── ic_email@3x.png │ │ │ │ ├── ic_file_download.png │ │ │ │ ├── ic_file_download@2x.png │ │ │ │ ├── ic_file_download@3x.png │ │ │ │ ├── ic_info.png │ │ │ │ ├── ic_info@2x.png │ │ │ │ ├── ic_info@3x.png │ │ │ │ ├── ic_link.png │ │ │ │ ├── ic_link@2x.png │ │ │ │ ├── ic_link@3x.png │ │ │ │ ├── ic_message.png │ │ │ │ ├── ic_message@2x.png │ │ │ │ ├── ic_message@3x.png │ │ │ │ ├── ic_mode_edit.png │ │ │ │ ├── ic_mode_edit@2x.png │ │ │ │ ├── ic_mode_edit@3x.png │ │ │ │ ├── ic_open_in_browser.png │ │ │ │ ├── ic_open_in_browser@2x.png │ │ │ │ ├── ic_open_in_browser@3x.png │ │ │ │ ├── ic_photo_camera.png │ │ │ │ ├── ic_photo_camera@2x.png │ │ │ │ ├── ic_photo_camera@3x.png │ │ │ │ ├── ic_photo_library.png │ │ │ │ ├── ic_photo_library@2x.png │ │ │ │ ├── ic_photo_library@3x.png │ │ │ │ ├── ic_post_gplus.png │ │ │ │ ├── ic_post_gplus@2x.png │ │ │ │ ├── ic_post_gplus@3x.png │ │ │ │ ├── ic_print.png │ │ │ │ ├── ic_print@2x.png │ │ │ │ ├── ic_print@3x.png │ │ │ │ ├── ic_report_problem.png │ │ │ │ ├── ic_report_problem@2x.png │ │ │ │ ├── ic_report_problem@3x.png │ │ │ │ ├── ic_report_problem_red.png │ │ │ │ ├── ic_report_problem_red@2x.png │ │ │ │ ├── ic_report_problem_red@3x.png │ │ │ │ ├── left.png │ │ │ │ ├── left@2x.png │ │ │ │ ├── right.png │ │ │ │ ├── right@2x.png │ │ │ │ ├── top.png │ │ │ │ └── top@2x.png │ │ │ ├── GoogleKitHUD.bundle │ │ │ │ └── Resources │ │ │ │ │ ├── ar.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── bg.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── ca.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── cs.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── da.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── de.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── el.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── en_AU.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── en_GB.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── en_IN.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── es_419.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── es_MX.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── fa.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── fr_CA.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── he.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── hi.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── hy.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── id.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── iw.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── ka.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── kk.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── km.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── ko.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── lo.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── lt.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── lv.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── mn.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── ms.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── no.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── pl.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── pt.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── ro.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── sk.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── sq.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── sr.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── sv.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── th.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── tr.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── uk.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── vi.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ ├── zh_HK.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ └── GoogleKitHUD.strings │ │ │ └── MaterialRobotoFontLoader.bundle │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ │ ├── Roboto-Italic.ttf │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── Roboto-LightItalic.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ └── Roboto-ThinItalic.ttf │ │ ├── Sources │ │ │ ├── GVRAudioEngine.h │ │ │ ├── GVRCardboardView.h │ │ │ ├── GVRHeadTransform.h │ │ │ ├── GVROverlayView.h │ │ │ ├── GVRPanoramaView.h │ │ │ ├── GVRVideoView.h │ │ │ ├── GVRWidgetView.h │ │ │ └── vr │ │ │ │ └── gvr │ │ │ │ └── capi │ │ │ │ └── include │ │ │ │ ├── gvr.h │ │ │ │ ├── gvr_audio.h │ │ │ │ └── gvr_types.h │ │ └── copy │ │ │ ├── Panorama │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Panorama-Info.plist │ │ │ ├── Panorama.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── PanoramaAppDelegate.h │ │ │ ├── PanoramaAppDelegate.m │ │ │ ├── PanoramaViewController.h │ │ │ ├── PanoramaViewController.m │ │ │ ├── Podfile │ │ │ ├── andes.jpg │ │ │ ├── launch.xib │ │ │ └── main.m │ │ │ ├── Stars │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Podfile │ │ │ ├── Stars-Info.plist │ │ │ ├── Stars.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── StarsAppDelegate.h │ │ │ ├── StarsAppDelegate.m │ │ │ ├── StarsRenderLoop.h │ │ │ ├── StarsRenderLoop.m │ │ │ ├── StarsRenderer.h │ │ │ ├── StarsRenderer.m │ │ │ ├── StarsViewController.h │ │ │ ├── StarsViewController.m │ │ │ ├── launch.xib │ │ │ └── main.m │ │ │ ├── TreasureHunt │ │ │ ├── Podfile │ │ │ ├── TreasureHunt-Info.plist │ │ │ ├── TreasureHunt.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── TreasureHuntAppDelegate.h │ │ │ ├── TreasureHuntAppDelegate.m │ │ │ ├── TreasureHuntRenderLoop.h │ │ │ ├── TreasureHuntRenderLoop.m │ │ │ ├── TreasureHuntRenderer.h │ │ │ ├── TreasureHuntRenderer.m │ │ │ ├── TreasureHuntViewController.h │ │ │ ├── TreasureHuntViewController.m │ │ │ ├── launch.xib │ │ │ ├── main.m │ │ │ └── noise_sample.wav │ │ │ ├── TreasureHuntNDK │ │ │ ├── Podfile │ │ │ ├── TreasureHuntAppDelegate.h │ │ │ ├── TreasureHuntAppDelegate.m │ │ │ ├── TreasureHuntNDK-Info.plist │ │ │ ├── TreasureHuntNDK.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── TreasureHuntViewController.h │ │ │ ├── TreasureHuntViewController.mm │ │ │ ├── launch.xib │ │ │ ├── main.m │ │ │ ├── noise_sample.wav │ │ │ ├── treasure_hunt_renderer.h │ │ │ ├── treasure_hunt_renderer.mm │ │ │ └── world_layout_data.h │ │ │ └── VideoWidgetDemo │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── Main.storyboard │ │ │ ├── Podfile │ │ │ ├── VideoPlayerAppDelegate.h │ │ │ ├── VideoPlayerAppDelegate.m │ │ │ ├── VideoPlayerViewController.h │ │ │ ├── VideoPlayerViewController.m │ │ │ ├── VideoWidgetDemo.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── launch.xib │ │ │ ├── main.m │ │ │ └── resources │ │ │ └── congo.mp4 │ ├── Headers │ │ ├── Private │ │ │ └── GVRSDK │ │ │ │ ├── GVRAudioEngine.h │ │ │ │ ├── GVRCardboardView.h │ │ │ │ ├── GVRHeadTransform.h │ │ │ │ ├── GVROverlayView.h │ │ │ │ ├── GVRPanoramaView.h │ │ │ │ ├── GVRVideoView.h │ │ │ │ ├── GVRWidgetView.h │ │ │ │ └── vr │ │ │ │ └── gvr │ │ │ │ └── capi │ │ │ │ └── include │ │ │ │ ├── gvr.h │ │ │ │ ├── gvr_audio.h │ │ │ │ └── gvr_types.h │ │ └── Public │ │ │ └── GVRSDK │ │ │ ├── GVRAudioEngine.h │ │ │ ├── GVRCardboardView.h │ │ │ ├── GVRHeadTransform.h │ │ │ ├── GVROverlayView.h │ │ │ ├── GVRPanoramaView.h │ │ │ ├── GVRVideoView.h │ │ │ ├── GVRWidgetView.h │ │ │ └── vr │ │ │ └── gvr │ │ │ └── capi │ │ │ └── include │ │ │ ├── gvr.h │ │ │ ├── gvr_audio.h │ │ │ └── gvr_types.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ └── Pods-yg_mediaDemo │ │ ├── Pods-yg_mediaDemo-acknowledgements.markdown │ │ ├── Pods-yg_mediaDemo-acknowledgements.plist │ │ ├── Pods-yg_mediaDemo-dummy.m │ │ ├── Pods-yg_mediaDemo-frameworks.sh │ │ ├── Pods-yg_mediaDemo-resources.sh │ │ ├── Pods-yg_mediaDemo.debug.xcconfig │ │ └── Pods-yg_mediaDemo.release.xcconfig │ ├── yg_mediaDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── yg_mediaDemo.xcworkspace │ └── contents.xcworkspacedata │ └── yg_mediaDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── FullViewController.h │ ├── FullViewController.m │ ├── Info.plist │ ├── VideoPlayView.h │ ├── VideoPlayView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── congo.mp4 │ ├── main.m │ └── resource │ ├── MaximumTrackImage@2x.png │ ├── MinimumTrackImage@2x.png │ ├── VRPlayer.bundle │ ├── MaximumTrackImage@2x.png │ ├── MinimumTrackImage@2x.png │ ├── VideoPlayView.xib │ ├── bg_media_default@3x.png │ ├── en.lproj │ │ └── Root.strings │ ├── full_minimize_btn_hl@2x.png │ ├── full_minimize_btn_hl@3x.png │ ├── full_pause_btn_hl@2x.png │ ├── full_pause_btn_hl@3x.png │ ├── full_play_btn_hl@2x.png │ ├── full_play_btn_hl@3x.png │ ├── mini_launchFullScreen_btn_hl@2x.png │ ├── mini_launchFullScreen_btn_hl@3x.png │ └── thumbImage@2x.png │ ├── VideoPlayView.xib │ ├── bg_media_default@3x.png │ ├── en.lproj │ └── Root.strings │ ├── full_minimize_btn_hl@2x.png │ ├── full_minimize_btn_hl@3x.png │ ├── full_pause_btn_hl@2x.png │ ├── full_pause_btn_hl@3x.png │ ├── full_play_btn_hl@2x.png │ ├── full_play_btn_hl@3x.png │ ├── mini_launchFullScreen_btn_hl@2x.png │ ├── mini_launchFullScreen_btn_hl@3x.png │ └── thumbImage@2x.png ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData/ 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata/ 19 | 20 | ## Other 21 | *.moved-aside 22 | *.xcuserstate 23 | 24 | ## Obj-C/Swift specific 25 | *.hmap 26 | *.ipa 27 | *.dSYM.zip 28 | *.dSYM 29 | 30 | # CocoaPods 31 | # 32 | # We recommend against adding the Pods directory to your .gitignore. However 33 | # you should judge for yourself, the pros and cons are mentioned at: 34 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 35 | # 36 | # Pods/ 37 | 38 | # Carthage 39 | # 40 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 41 | # Carthage/Checkouts 42 | 43 | Carthage/Build 44 | 45 | # fastlane 46 | # 47 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 48 | # screenshots whenever they are needed. 49 | # For more information about the recommended setup visit: 50 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 51 | 52 | fastlane/report.xml 53 | fastlane/screenshots 54 | 55 | #Code Injection 56 | # 57 | # After new code Injection tools there's a generated folder /iOSInjectionProject 58 | # https://github.com/johnno1962/injectionforxcode 59 | 60 | iOSInjectionProject/ 61 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, "9.0" 3 | 4 | 5 | target :yg_mediaDemo do 6 | pod 'GVRSDK', '~> 0.8.5' 7 | end 8 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - GVRSDK (0.8.5) 3 | 4 | DEPENDENCIES: 5 | - GVRSDK (~> 0.8.5) 6 | 7 | SPEC CHECKSUMS: 8 | GVRSDK: 69e9f15d4c0aff2f127467b03c570c1fc51fe74d 9 | 10 | PODFILE CHECKSUM: d738700205b71e6c3fb4f54f468a073fdde0a6b1 11 | 12 | COCOAPODS: 1.0.1 13 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Libraries/libCardboardSDK_arm64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Libraries/libCardboardSDK_arm64.a -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Libraries/libCardboardSDK_armv7.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Libraries/libCardboardSDK_armv7.a -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Libraries/libCardboardSDK_i386.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Libraries/libCardboardSDK_i386.a -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Libraries/libCardboardSDK_x86_64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Libraries/libCardboardSDK_x86_64.a -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/Assets.car -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/Info.plist -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/arrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/arrowRight.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/cardboardLogotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/cardboardLogotype.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/continueButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/continueButton.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/gearButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/gearButton.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_arrow_back_white@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_arrow_back_white@1x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_arrow_back_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_arrow_back_white@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_arrow_back_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_arrow_back_white@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_settings_white@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_settings_white@1x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_settings_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_settings_white@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_settings_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/ic_settings_white@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/qrSample@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/qrSample@1x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/qrSample@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/qrSample@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/qrSample@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/qrSample@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/rotateInstructions.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/rotateInstructions.mp4 -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/tickmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/CardboardSDK.bundle/tickmarks.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue_highlighted.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue_highlighted@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_blue_highlighted@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark_highlighted.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark_highlighted@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_dark_highlighted@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light_highlighted.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light_highlighted@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_light_highlighted@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red_highlighted.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red_highlighted@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/button_red_highlighted@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_background_selected_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_background_selected_dark.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_background_selected_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_background_selected_dark@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_disclosure_accessory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_disclosure_accessory.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_disclosure_accessory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_disclosure_accessory@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_disclosure_accessory@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_disclosure_accessory@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_divider.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/cell_divider@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkbox.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkbox@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkbox_checked.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkbox_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkbox_checked@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkmark.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/checkmark@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/vertical_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/vertical_divider.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/vertical_divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitCore.bundle/vertical_divider@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/ar.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "موافق"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "إلغاء"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "إعادة المحاولة"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "موافق"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "إلغاء"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "إعادة المحاولة"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "تنبيه"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/bg.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Отказ"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Повторен опит"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Отказ"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Повторен опит"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Предупреждение"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/ca.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "D'acord"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancel·la"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Torna-ho a provar"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "D'acord"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancel·la"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Torna-ho a provar"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerta"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/cs.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Zrušit"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Opakovat akci"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Zrušit"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Opakovat akci"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Upozornění"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/da.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Annuller"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Prøv igen"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Annuller"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Prøv igen"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Underretning"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/de.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Abbrechen"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Erneut versuchen"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Abbrechen"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Erneut versuchen"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Warnung"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/el.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "ΟΚ"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Ακύρωση"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Δοκιμάστε ξανά"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "ΟΚ"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Ακύρωση"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Δοκιμάστε ξανά"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Ειδοποίηση"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/en.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancel"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Try again"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancel"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Try again"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alert"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/en_AU.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancel"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Try again"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancel"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Try again"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alert"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/en_GB.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancel"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Try again"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancel"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Try again"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alert"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/en_IN.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancel"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Try again"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancel"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Try again"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alert"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/es.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Aceptar"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancelar"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Intentar de nuevo"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Aceptar"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancelar"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Intentar de nuevo"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerta"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/es_419.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Aceptar"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancelar"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Volver a intentar"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Aceptar"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancelar"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Volver a intentar"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerta"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/es_MX.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Aceptar"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancelar"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Volver a intentar"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Aceptar"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancelar"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Volver a intentar"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerta"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/fa.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "تأیید"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "لغو"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "دوباره امتحان کنید"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "تأیید"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "لغو"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "دوباره امتحان کنید"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "هشدار"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/fi.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Peruuta"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Yritä uudelleen"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Peruuta"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Yritä uudelleen"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Ilmoitus"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/fr.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Annuler"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Réessayer"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Annuler"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Réessayer"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerte"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/fr_CA.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Annuler"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Essayer de nouveau"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Annuler"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Essayer de nouveau"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerte"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/he.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "אישור"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "ביטול"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "נסה שוב"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "אישור"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "ביטול"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "נסה שוב"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "התראה"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/hi.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "ठीक"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "अभी नहीं"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "फिर से प्रयास करें"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "ठीक"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "अभी नहीं"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "फिर से प्रयास करें"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "अलर्ट"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/hr.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "U redu"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Odustani"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Pokušaj ponovo"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "U redu"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Odustani"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Pokušaj ponovo"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Upozorenje"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/hu.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Mégse"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Próbálja újra"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Mégse"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Próbálja újra"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Riasztás"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/hy.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Լավ"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Չեղարկել"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Փորձել նորից"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Լավ"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Չեղարկել"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Փորձել նորից"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Ծանուցում"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/id.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Oke"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Batal"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Coba lagi"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Oke"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Batal"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Coba lagi"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Lansiran"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/it.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Annulla"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Riprova"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Annulla"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Riprova"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Avviso"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/iw.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "אישור"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "ביטול"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "נסה שוב"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "אישור"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "ביטול"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "נסה שוב"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "התראה"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/ja.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "キャンセル"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "もう一度やり直す"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "キャンセル"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "もう一度やり直す"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "警告"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/ka.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "კარგი"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "გაუქმება"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "ხელახლა სცადეთ"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "კარგი"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "გაუქმება"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "ხელახლა სცადეთ"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "გაფრთხილება"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/kk.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "ОК"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Бас тарту"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Әрекетті қайталаңыз"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "ОК"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Бас тарту"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Әрекетті қайталаңыз"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Дабыл"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/km.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "យល់ព្រម"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "បោះបង់"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "ព្យាយាម​ម្ដងទៀត"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "យល់ព្រម"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "បោះបង់"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "ព្យាយាម​ម្ដងទៀត"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "ជូន​ដំណឹង"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/ko.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "확인"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "취소"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "다시 시도"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "확인"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "취소"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "다시 시도"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "알림"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/lo.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "ຕົກລົງ"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "ຍົກເລີກ"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "ລອງໃໝ່ອີກເທື່ອນຶ່ງ"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "ຕົກລົງ"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "ຍົກເລີກ"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "ລອງໃໝ່ອີກເທື່ອນຶ່ງ"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "ແຈ້ງເຕືອນ"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/lt.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Gerai"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Atšaukti"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Bandykite dar kartą"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Gerai"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Atšaukti"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Bandykite dar kartą"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Įspėjimas"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/lv.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Labi"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Atcelt"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Mēģināt vēlreiz"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Labi"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Atcelt"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Mēģināt vēlreiz"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Brīdinājums"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/mn.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Цуцлах"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Дахин оролдоно уу"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Цуцлах"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Дахин оролдоно уу"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Анхааруулга"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/ms.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Batal"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Cuba lagi"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Batal"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Cuba lagi"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Makluman"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/nb.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Avbryt"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Prøv på nytt"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Avbryt"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Prøv på nytt"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Varsel"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/nl.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Annuleren"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Opnieuw"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Annuleren"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Opnieuw"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Melding"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/no.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Avbryt"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Prøv på nytt"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Avbryt"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Prøv på nytt"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Varsel"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/pl.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Anuluj"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Spróbuj ponownie"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Anuluj"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Spróbuj ponownie"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alert"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/pt.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancelar"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Tentar novamente"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancelar"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Tentar novamente"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerta"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/pt_BR.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancelar"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Tentar novamente"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancelar"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Tentar novamente"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerta"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/pt_PT.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Cancelar"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Tentar novamente"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Cancelar"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Tentar novamente"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alerta"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/ro.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Anulați"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Încercați din nou"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Anulați"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Încercați din nou"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alertă"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/ru.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "ОК"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Отмена"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Повторить"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "ОК"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Отмена"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Повторить"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Оповещение"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/sk.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Zrušiť"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Skúsiť znova"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Zrušiť"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Skúsiť znova"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Upozornenie"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/sq.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Anulo"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Provo sërish"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Anulo"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Provo sërish"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Alarm"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/sr.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Потврди"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Откажи"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Покушај поново"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Потврди"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Откажи"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Покушај поново"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Упозорење"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/sv.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Avbryt"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Försök igen"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Avbryt"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Försök igen"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Avisering"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/th.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "ตกลง"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "ยกเลิก"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "ลองอีกครั้ง"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "ตกลง"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "ยกเลิก"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "ลองอีกครั้ง"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "การแจ้งเตือน"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/tr.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "Tamam"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "İptal"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Tekrar deneyin"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "Tamam"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "İptal"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Tekrar deneyin"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Uyarı"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/uk.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "ОК"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Скасувати"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Повторити спробу"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "ОК"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Скасувати"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Повторити спробу"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Сповіщення"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/vi.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "OK"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "Hủy"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "Thử lại"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "OK"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "Hủy"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "Thử lại"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "Thông báo"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/zh_CN.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "确定"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "取消"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "重试"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "确定"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "取消"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "重试"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "提醒"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/zh_HK.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "確定"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "取消"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "再試一次"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "確定"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "取消"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "再試一次"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "注意"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/Resources/zh_TW.lproj/GoogleKitDialogs.strings: -------------------------------------------------------------------------------- 1 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 2 | "AcknowledgeAction" = "確定"; 3 | 4 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 5 | "CancelAction" = "取消"; 6 | 7 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 8 | "TryAgainAction" = "再試一次"; 9 | 10 | /* Label for the close button on a dialog that needs acknowledgement. (15 chars.) */ 11 | "GoogleKitDialogsAcknowledgeAction" = "確定"; 12 | 13 | /* "Cancel" text label where the standard 'abort this action' button is offered. (8 chars.) */ 14 | "GoogleKitDialogsCancelAction" = "取消"; 15 | 16 | /* Label for a button indicating an action should be attempted again. (40 chars.) */ 17 | "GoogleKitDialogsTryAgainAction" = "再試一次"; 18 | 19 | /* Word read aloud when VoiceOver is enabled before showing an alert. (No limit chars.) */ 20 | "GoogleKitDialogsAccessibilityAlertAnnouncement" = "快訊"; 21 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_bottom.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_bottom@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_left.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_left@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_right.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_right@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_top.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/arrow_top@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/background.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/background@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/bottom.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/bottom@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_bottom_left.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_bottom_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_bottom_left@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_bottom_right.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_bottom_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_bottom_right@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_top_left.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_top_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_top_left@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_top_right.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_top_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/corner_top_right@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_check.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_check@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_check@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_check@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_close.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_close@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_close@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_comment.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_comment@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_comment@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_delete.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_delete@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_delete@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_email.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_email@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_email@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_email@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_file_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_file_download.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_file_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_file_download@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_file_download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_file_download@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_info.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_info@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_info@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_link.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_link@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_link@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_link@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_message.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_message@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_message@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_mode_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_mode_edit.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_mode_edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_mode_edit@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_mode_edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_mode_edit@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_open_in_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_open_in_browser.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_open_in_browser@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_open_in_browser@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_open_in_browser@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_open_in_browser@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_camera.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_camera@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_camera@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_library.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_library@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_library@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_library@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_photo_library@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_post_gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_post_gplus.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_post_gplus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_post_gplus@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_post_gplus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_post_gplus@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_print.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_print@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_print@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_print@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem_red.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem_red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem_red@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem_red@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/ic_report_problem_red@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/left.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/left@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/right.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/right@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/top.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitDialogs.bundle/top@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/ar.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "انقر نقرًا مزدوجًا للتجاهل."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/bg.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Докоснете двукратно за отхвърляне."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/ca.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toqueu la pantalla dues vegades per descartar la notificació."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/cs.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Poklepáním oznámení zavřete."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/da.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Tryk to gange for at annullere."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/de.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Zum Schließen zweimal tippen"; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/el.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Πατήστε δύο φορές για απόρριψη."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/en.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Double-tap to dismiss."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/en_AU.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Double tap to dismiss."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/en_GB.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Double tap to dismiss."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/en_IN.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Double tap to dismiss."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/es.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toca dos veces para descartar."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/es_419.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Presiona dos veces para ignorar."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/es_MX.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Presiona dos veces para ignorar."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/fa.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "برای رد کردن دو بار ضربه بزنید."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/fi.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Hylkää kaksoisnapauttamalla."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/fr.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Appuyez deux fois pour masquer."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/fr_CA.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Touchez deux fois pour masquer."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/he.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "הקש פעמיים לסגירה."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/hi.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "खारिज करने के लिए डबल–टैप करें."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/hr.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Dvaput dodirnite za odbacivanje."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/hu.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Koppintson duplán a bezáráshoz."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/hy.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Փակելու համար կրկնակի հպեք:"; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/id.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Ketuk dua kali untuk menutup."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/it.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Tocca due volte per ignorare."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/iw.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "הקש פעמיים לסגירה."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/ja.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "ダブルタップして閉じます。"; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/ka.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "ორჯერ შეეხეთ უარყოფისთვის."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/kk.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Қабылдамау үшін екі рет түртіңіз."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/km.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "ប៉ះ​ទ្វេ​ដង​ដើម្បី​បដិសេធ"; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/ko.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "닫으려면 두 번 탭하세요."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/lo.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "ແຕະສອງເທື່ອເພື່ອປິດໄວ້."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/lt.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Dusyk palieskite, jei norite atsisakyti."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/lv.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Lai nerādītu paziņojumu, piesitiet divreiz."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/mn.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Татгалзах бол хоёр товшино."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/ms.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Ketik dua kali untuk mengetepikan."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/nb.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Trykk to ganger for å fjerne."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/nl.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Dubbeltik om melding te sluiten."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/no.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Trykk to ganger for å fjerne."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/pl.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Kliknij dwukrotnie, by zamknąć."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/pt.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toque duas vezes para dispensar."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/pt_BR.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toque duas vezes para dispensar."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/pt_PT.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Toque duas vezes para ignorar."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/ro.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Atingeți de două ori pentru a închide."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/ru.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Нажмите дважды, чтобы закрыть уведомление."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/sk.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Odmietnite dvojitým klepnutím."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/sq.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Prek dy herë për t'u larguar."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/sr.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Додирните двапут да бисте одбацили."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/sv.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Ta bort permanent genom att trycka två gånger."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/th.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "แตะสองครั้งเพื่อปิด"; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/tr.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Kapatmak için iki kez hafifçe vurun."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/uk.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Натисніть двічі, щоб закрити."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/vi.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "Nhấn đúp để loại bỏ."; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/zh_CN.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "点按两次即可关闭。"; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/zh_HK.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "輕按兩下關閉。"; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/GoogleKitHUD.bundle/Resources/zh_TW.lproj/GoogleKitHUD.strings: -------------------------------------------------------------------------------- 1 | /* VoiceOver description of how the user can double-tap on the HUD notification to dismiss it. (unlimited chars). */ 2 | "GoogleKitHUDMessageViewTitleVoiceoverHint" = "輕觸兩下即可關閉。"; 3 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Black.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Light.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/Resources/MaterialRobotoFontLoader.bundle/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Sources/GVRHeadTransform.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | /** 4 | * Enumeration of the left and right eyes, used to identify the correct rendering parameters needed 5 | * for stereo rendering. 6 | */ 7 | typedef NS_ENUM(NSInteger, GVREye) { 8 | kGVRLeftEye, 9 | kGVRRightEye, 10 | kGVRCenterEye, 11 | }; 12 | 13 | /** 14 | * Defines a struct to hold half field of view angles, in degrees, for an |GVREye| eye. 15 | */ 16 | typedef struct { 17 | CGFloat left; 18 | CGFloat right; 19 | CGFloat top; 20 | CGFloat bottom; 21 | } GVRFieldOfView; 22 | 23 | /** 24 | * Defines a class to represent the head transformation for a render frame. 25 | */ 26 | @interface GVRHeadTransform : NSObject 27 | 28 | /** Returns the screen viewport for a given eye. */ 29 | - (CGRect)viewportForEye:(GVREye)eye; 30 | 31 | /** Returns the projection matrix for the specified eye. */ 32 | - (GLKMatrix4)projectionMatrixForEye:(GVREye)eye near:(CGFloat)near far:(CGFloat)far; 33 | 34 | /** 35 | * Returns the transformation matrix used to convert from Head Space to Eye Space for the given 36 | * eye. 37 | */ 38 | - (GLKMatrix4)eyeFromHeadMatrix:(GVREye)eye; 39 | 40 | /** Returns the reference matrix of the head pose in start space. */ 41 | - (GLKMatrix4)headPoseInStartSpace; 42 | 43 | /** Returns the field of view for the specified eye. */ 44 | - (GVRFieldOfView)fieldOfViewForEye:(GVREye)eye; 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Sources/GVROverlayView.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Defines a delegate protocol for |GVROverlayView| class. It's used to respond to the user 3 | * tapping various controls in the overlay view. 4 | */ 5 | @protocol GVROverlayViewDelegate 6 | 7 | /** Called when the user tapped the Back arrow button. */ 8 | - (void)didTapBackButton; 9 | 10 | @optional 11 | 12 | /** Called when the user tapped the Cardboard icon button. */ 13 | - (void)didTapCardboardButton; 14 | 15 | /** 16 | * Called to get a presenting view controller to present the settings dialog. If this is not 17 | * implemented, the presenting view controller is derived from the applications rootViewController. 18 | */ 19 | - (UIViewController *)presentingViewControllerForSettingsDialog; 20 | 21 | /** 22 | * Called when the setting dialog is presented. Delegates can use this to pause/resume GL rendering. 23 | */ 24 | - (void)didPresentSettingsDialog:(BOOL)presented; 25 | 26 | /** Called when the VR viewer is paired by the user. Delegates should refresh the GL rendering. */ 27 | - (void)didChangeViewerProfile; 28 | 29 | /** 30 | * Called to allow the delegate to manage their own application idle timer. If not implemented, it 31 | * is managed by the SDK. 32 | */ 33 | - (void)shouldDisableIdleTimer:(BOOL)shouldDisable; 34 | 35 | @end 36 | 37 | 38 | /** 39 | * Defines a view to display various overlay controls on top of |GVRCardboardView|. 40 | */ 41 | @interface GVROverlayView : UIView 42 | 43 | @property(nonatomic, weak) id delegate; 44 | 45 | @end 46 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Sources/GVRPanoramaView.h: -------------------------------------------------------------------------------- 1 | #import "GVRWidgetView.h" 2 | 3 | /** The enum of panorama image types. */ 4 | typedef NS_ENUM(int, GVRPanoramaImageType) { 5 | // Regular image from a single image source, representing pixels for only one eye. 6 | // The image is expected to cover 360 degrees along its horizontal axis, while the 7 | // vertical range is computed according to the image's aspect ratio. For example, if a 1000x250 8 | // pixels image is given, the panorama will cover 360x90 degrees with the vertical range 9 | // being -45 to +45 degrees. 10 | kGVRPanoramaImageTypeMono = 1, 11 | 12 | // Image in over-under format, from a single image source. Pixels in the upper half correspond to 13 | // the left eye. Pixels in the lower half correspond to the right eye. 14 | // The image is expected to cover 360 degrees along its horizontal axis, while the 15 | // vertical range is computed according to the image's aspect ratio. For example, if a 1000x500 16 | // pixels image is given (i.e 1000x250 pixels for each eye), the panorama will cover 360x90 17 | // degrees with the vertical range being -45 to +45 degrees. 18 | kGVRPanoramaImageTypeStereoOverUnder, 19 | }; 20 | 21 | /** Defines a view that can load and display 360-degree panoramic photos. */ 22 | @interface GVRPanoramaView : GVRWidgetView 23 | 24 | /** 25 | * Load a 360-Panorama image from |UIImage| of type |kGVRPanoramaImageTypeMono|. 26 | * 27 | * If image is nil, it clears the view. 28 | */ 29 | - (void)loadImage:(UIImage *)image; 30 | 31 | /** 32 | * Load a 360-Panorama image from |UIImage| of type |GVRPanoramaImageType|. 33 | * 34 | * If image is nil, it clears the view. 35 | */ 36 | - (void)loadImage:(UIImage *)image ofType:(GVRPanoramaImageType)imageType; 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/Sources/GVRVideoView.h: -------------------------------------------------------------------------------- 1 | #import "GVRWidgetView.h" 2 | 3 | /** Enum for video image types. */ 4 | typedef NS_ENUM(int, GVRVideoType) { 5 | // Each video frame is a monocular equirectangular panorama. 6 | // Each frame image is expected to cover 360 degrees along its horizontal axis. 7 | kGVRVideoTypeMono = 1, 8 | 9 | // Each video frame contains two vertically-stacked equirectangular panoramas. The top part of 10 | // the frame contains pixels for the left eye, while the bottom part of the frame contains 11 | // pixels for the right eye. 12 | kGVRVideoTypeStereoOverUnder, 13 | }; 14 | 15 | /** 16 | * Defines a player view that renders a 360 video using OpenGL. 17 | */ 18 | @interface GVRVideoView : GVRWidgetView 19 | 20 | /** 21 | * Load a local or remote video from a url and start playing. 22 | * 23 | * The video is assumed to be of type |kGVRVideoTypeMono|. 24 | */ 25 | - (void)loadFromUrl:(NSURL*)videoUrl; 26 | 27 | /** 28 | * Load a local or remote video from a url and start playing. 29 | * 30 | * The video type is set by |videoType|. 31 | */ 32 | - (void)loadFromUrl:(NSURL*)videoUrl ofType:(GVRVideoType)videoType; 33 | 34 | /** Pause the video. */ 35 | - (void)pause; 36 | 37 | /** Resume the video. */ 38 | - (void)resume; 39 | 40 | /** Stop the video. */ 41 | - (void)stop; 42 | 43 | /** Get the duration of the video. */ 44 | - (NSTimeInterval)duration; 45 | 46 | /** Seek to the target time position of the video. */ 47 | - (void)seekTo:(NSTimeInterval)position; 48 | 49 | @end 50 | 51 | /** Defines a protocol to notify delegates of change in video playback. */ 52 | @protocol GVRVideoViewDelegate 53 | 54 | /** Called when position of the video playback head changes. */ 55 | - (void)videoView:(GVRVideoView*)videoView didUpdatePosition:(NSTimeInterval)position; 56 | 57 | @end 58 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/Panorama-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDisplayName 6 | ${PRODUCT_NAME} 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.google.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 2.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 2.1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | launch 27 | UIRequiredDeviceCapabilities 28 | 29 | magnetometer 30 | 31 | UIStatusBarHidden 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | UIInterfaceOrientationPortraitUpsideDown 39 | 40 | UISupportedInterfaceOrientations~ipad 41 | 42 | UIInterfaceOrientationPortrait 43 | UIInterfaceOrientationPortraitUpsideDown 44 | UIInterfaceOrientationLandscapeLeft 45 | UIInterfaceOrientationLandscapeRight 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/PanoramaAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface PanoramaAppDelegate : UIResponder 4 | 5 | @property(strong, nonatomic) UIWindow *window; 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/PanoramaAppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "PanoramaAppDelegate.h" 2 | 3 | #import "PanoramaViewController.h" 4 | 5 | @implementation PanoramaAppDelegate 6 | 7 | - (BOOL)application:(UIApplication *)application 8 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 9 | UIViewController *viewController = [[PanoramaViewController alloc] init]; 10 | viewController = [[UINavigationController alloc] initWithRootViewController:viewController]; 11 | 12 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 13 | self.window.rootViewController = viewController; 14 | [self.window makeKeyAndVisible]; 15 | return YES; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/PanoramaViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface PanoramaViewController : UIViewController 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/Podfile: -------------------------------------------------------------------------------- 1 | target 'Panorama' do 2 | pod 'GVRSDK' 3 | end 4 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/andes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/andes.jpg -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Panorama/main.m: -------------------------------------------------------------------------------- 1 | #import "PanoramaAppDelegate.h" 2 | 3 | #import 4 | 5 | int main(int argc, char * argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([PanoramaAppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/Default-568h@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/Podfile: -------------------------------------------------------------------------------- 1 | target 'Stars' do 2 | pod 'GVRSDK' 3 | end 4 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/Stars-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDisplayName 6 | ${PRODUCT_NAME} 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.google.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 2.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 2.1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | launch 27 | UIRequiredDeviceCapabilities 28 | 29 | magnetometer 30 | 31 | UIStatusBarHidden 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | UIInterfaceOrientationPortraitUpsideDown 39 | 40 | UISupportedInterfaceOrientations~ipad 41 | 42 | UIInterfaceOrientationPortrait 43 | UIInterfaceOrientationPortraitUpsideDown 44 | UIInterfaceOrientationLandscapeLeft 45 | UIInterfaceOrientationLandscapeRight 46 | 47 | UIRequiresFullScreen 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/StarsAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface StarsAppDelegate : NSObject 4 | @property(nonatomic, strong) UIWindow* window; 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/StarsAppDelegate.m: -------------------------------------------------------------------------------- 1 | #if !defined(__has_feature) || !__has_feature(objc_arc) 2 | #error "This file requires ARC support. Compile with -fobjc-arc" 3 | #endif 4 | 5 | #import "StarsAppDelegate.h" 6 | 7 | #import "StarsViewController.h" 8 | 9 | @interface StarsAppDelegate () 10 | 11 | @end 12 | 13 | @implementation StarsAppDelegate 14 | 15 | #pragma mark - UIApplicationDelegate overrides 16 | 17 | - (BOOL)application:(UIApplication *)application 18 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 19 | UINavigationController *navigationController = [[UINavigationController alloc] 20 | initWithRootViewController:[[StarsViewController alloc] init]]; 21 | navigationController.delegate = self; 22 | navigationController.navigationBarHidden = YES; 23 | 24 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 25 | self.window.rootViewController = navigationController; 26 | [self.window makeKeyAndVisible]; 27 | return YES; 28 | } 29 | 30 | #pragma mark - UINavigationControllerDelegate 31 | 32 | // Make the navigation controller defer the check of supported orientation to its topmost view 33 | // controller. This allows |GVRCardboardViewController| to lock the orientation in VR mode. 34 | - (UIInterfaceOrientationMask)navigationControllerSupportedInterfaceOrientations: 35 | (UINavigationController *)navigationController { 36 | return [navigationController.topViewController supportedInterfaceOrientations]; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/StarsRenderLoop.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface StarsRenderLoop : NSObject 4 | 5 | /** 6 | * Initializes the render loop with target and selector. The underlying |CADisplayLink| instance 7 | * holds a strong reference to the target until the |invalidate| method is called. 8 | */ 9 | - (instancetype)initWithRenderTarget:(id)target selector:(SEL)selector; 10 | 11 | /** 12 | * Invalidates this instance and the underlying |CADisplayLink| instance releases its strong 13 | * reference to the render target. 14 | */ 15 | - (void)invalidate; 16 | 17 | /** Sets or returns the paused state of the underlying |CADisplayLink| reference. */ 18 | @property(nonatomic) BOOL paused; 19 | 20 | /** Returns the timestamp of when the next frame will be drawn. */ 21 | @property(nonatomic, readonly) NSTimeInterval nextFrameTime; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/StarsRenderer.h: -------------------------------------------------------------------------------- 1 | #import "GVRCardboardView.h" 2 | 3 | @class StarsRenderLoop; 4 | 5 | /** Cardboard Stars renderer. */ 6 | @interface StarsRenderer : NSObject 7 | 8 | @property(nonatomic, weak) StarsRenderLoop *renderLoop; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/StarsViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface StarsViewController : UIViewController 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/StarsViewController.m: -------------------------------------------------------------------------------- 1 | #import "StarsViewController.h" 2 | 3 | #import "StarsRenderLoop.h" 4 | #import "StarsRenderer.h" 5 | 6 | @interface StarsViewController () { 7 | GVRCardboardView *_cardboardView; 8 | StarsRenderer *_starsRenderer; 9 | StarsRenderLoop *_renderLoop; 10 | } 11 | @end 12 | 13 | @implementation StarsViewController 14 | 15 | - (void)loadView { 16 | _starsRenderer = [[StarsRenderer alloc] init]; 17 | 18 | _cardboardView = [[GVRCardboardView alloc] initWithFrame:CGRectZero]; 19 | _cardboardView.delegate = _starsRenderer; 20 | _cardboardView.autoresizingMask = 21 | UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; 22 | 23 | _cardboardView.vrModeEnabled = YES; 24 | 25 | // Use double-tap gesture to toggle between VR and magic window mode. 26 | UITapGestureRecognizer *doubleTapGesture = 27 | [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(didDoubleTapView:)]; 28 | doubleTapGesture.numberOfTapsRequired = 2; 29 | [_cardboardView addGestureRecognizer:doubleTapGesture]; 30 | 31 | self.view = _cardboardView; 32 | } 33 | 34 | - (void)viewWillAppear:(BOOL)animated { 35 | [super viewWillAppear:animated]; 36 | 37 | _renderLoop = [[StarsRenderLoop alloc] initWithRenderTarget:_cardboardView 38 | selector:@selector(render)]; 39 | _starsRenderer.renderLoop = _renderLoop; 40 | } 41 | 42 | - (void)viewDidDisappear:(BOOL)animated { 43 | [super viewDidDisappear:animated]; 44 | 45 | [_renderLoop invalidate]; 46 | _renderLoop = nil; 47 | } 48 | 49 | #pragma mark - Implementation 50 | 51 | - (void)didDoubleTapView:(id)sender { 52 | _cardboardView.vrModeEnabled = !_cardboardView.vrModeEnabled; 53 | } 54 | 55 | @end 56 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/Stars/main.m: -------------------------------------------------------------------------------- 1 | #import "StarsAppDelegate.h" 2 | 3 | int main(int argc, char *argv[]) { 4 | @autoreleasepool { 5 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([StarsAppDelegate class])); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/Podfile: -------------------------------------------------------------------------------- 1 | target 'TreasureHunt' do 2 | pod 'GVRSDK' 3 | end 4 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/TreasureHunt-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UIRequiredDeviceCapabilities 6 | 7 | magnetometer 8 | 9 | CFBundleDisplayName 10 | ${PRODUCT_NAME} 11 | CFBundleExecutable 12 | ${EXECUTABLE_NAME} 13 | CFBundleIdentifier 14 | com.google.${BUNDLE_FRAGMENT_NAME:rfc1034identifier} 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ${PRODUCT_NAME} 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | 2.1 23 | CFBundleSignature 24 | ???? 25 | CFBundleVersion 26 | 2.1 27 | LSRequiresIPhoneOS 28 | 29 | UILaunchStoryboardName 30 | launch 31 | UIStatusBarHidden 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | UIInterfaceOrientationPortraitUpsideDown 39 | 40 | UISupportedInterfaceOrientations~ipad 41 | 42 | UIInterfaceOrientationPortrait 43 | UIInterfaceOrientationPortraitUpsideDown 44 | UIInterfaceOrientationLandscapeLeft 45 | UIInterfaceOrientationLandscapeRight 46 | 47 | UIRequiresFullScreen 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/TreasureHuntAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface TreasureHuntAppDelegate : NSObject 4 | @property(nonatomic, strong) UIWindow* window; 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/TreasureHuntAppDelegate.m: -------------------------------------------------------------------------------- 1 | #if !defined(__has_feature) || !__has_feature(objc_arc) 2 | #error "This file requires ARC support. Compile with -fobjc-arc" 3 | #endif 4 | 5 | #import "TreasureHuntAppDelegate.h" 6 | 7 | #import "TreasureHuntViewController.h" 8 | 9 | @interface TreasureHuntAppDelegate () 10 | 11 | @end 12 | 13 | @implementation TreasureHuntAppDelegate 14 | 15 | #pragma mark - UIApplicationDelegate overrides 16 | 17 | - (BOOL)application:(UIApplication *)application 18 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 19 | UINavigationController *navigationController = [[UINavigationController alloc] 20 | initWithRootViewController:[[TreasureHuntViewController alloc] init]]; 21 | navigationController.delegate = self; 22 | navigationController.navigationBarHidden = YES; 23 | 24 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 25 | self.window.rootViewController = navigationController; 26 | [self.window makeKeyAndVisible]; 27 | return YES; 28 | } 29 | 30 | #pragma mark - UINavigationControllerDelegate 31 | 32 | // Make the navigation controller defer the check of supported orientation to its topmost view 33 | // controller. This allows |GVRCardboardViewController| to lock the orientation in VR mode. 34 | - (UIInterfaceOrientationMask)navigationControllerSupportedInterfaceOrientations: 35 | (UINavigationController *)navigationController { 36 | return [navigationController.topViewController supportedInterfaceOrientations]; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/TreasureHuntRenderLoop.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface TreasureHuntRenderLoop : NSObject 4 | 5 | /** 6 | * Initializes the render loop with target and selector. The underlying |CADisplayLink| instance 7 | * holds a strong reference to the target until the |invalidate| method is called. 8 | */ 9 | - (instancetype)initWithRenderTarget:(id)target selector:(SEL)selector; 10 | 11 | /** 12 | * Invalidates this instance and the underlying |CADisplayLink| instance releases its strong 13 | * reference to the render target. 14 | */ 15 | - (void)invalidate; 16 | 17 | /** Sets or returns the paused state of the underlying |CADisplayLink| reference. */ 18 | @property(nonatomic) BOOL paused; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/TreasureHuntRenderer.h: -------------------------------------------------------------------------------- 1 | #import "GVRCardboardView.h" 2 | 3 | /** TreasureHunt renderer delegate. */ 4 | @protocol TreasureHuntRendererDelegate 5 | @optional 6 | 7 | /** Called to pause the render loop because a 2D UI is overlaid on top of the renderer. */ 8 | - (void)shouldPauseRenderLoop:(BOOL)pause; 9 | 10 | @end 11 | 12 | /** TreasureHunt renderer. */ 13 | @interface TreasureHuntRenderer : NSObject 14 | 15 | @property(nonatomic, weak) id delegate; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/TreasureHuntViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface TreasureHuntViewController : UIViewController 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/main.m: -------------------------------------------------------------------------------- 1 | #import "TreasureHuntAppDelegate.h" 2 | 3 | int main(int argc, char *argv[]) { 4 | @autoreleasepool { 5 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([TreasureHuntAppDelegate class])); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/noise_sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHunt/noise_sample.wav -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHuntNDK/Podfile: -------------------------------------------------------------------------------- 1 | target 'TreasureHuntNDK' do 2 | pod 'GVRSDK' 3 | end 4 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHuntNDK/TreasureHuntAppDelegate.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Google Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #import 18 | 19 | @interface TreasureHuntAppDelegate : NSObject 20 | @property(nonatomic, strong) UIWindow* window; 21 | @end 22 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHuntNDK/TreasureHuntNDK-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UIRequiredDeviceCapabilities 6 | 7 | magnetometer 8 | 9 | CFBundleDisplayName 10 | ${PRODUCT_NAME} 11 | CFBundleExecutable 12 | ${EXECUTABLE_NAME} 13 | CFBundleIdentifier 14 | com.google.${BUNDLE_FRAGMENT_NAME:rfc1034identifier} 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ${PRODUCT_NAME} 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | 2.1 23 | CFBundleSignature 24 | ???? 25 | CFBundleVersion 26 | 2.1 27 | LSRequiresIPhoneOS 28 | 29 | UILaunchStoryboardName 30 | launch 31 | UIStatusBarHidden 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | UIInterfaceOrientationPortraitUpsideDown 39 | 40 | UISupportedInterfaceOrientations~ipad 41 | 42 | UIInterfaceOrientationPortrait 43 | UIInterfaceOrientationPortraitUpsideDown 44 | UIInterfaceOrientationLandscapeLeft 45 | UIInterfaceOrientationLandscapeRight 46 | 47 | UIRequiresFullScreen 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHuntNDK/TreasureHuntViewController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Google Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #import 18 | 19 | @interface TreasureHuntViewController : GLKViewController 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHuntNDK/main.m: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2016 Google Inc. All Rights Reserved. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #import "TreasureHuntAppDelegate.h" 18 | 19 | int main(int argc, char *argv[]) { 20 | @autoreleasepool { 21 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([TreasureHuntAppDelegate class])); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHuntNDK/noise_sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/copy/TreasureHuntNDK/noise_sample.wav -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIcons 12 | 13 | CFBundlePrimaryIcon 14 | 15 | CFBundleIconFiles 16 | 17 | app57.png 18 | app.png 19 | app57@2x.png 20 | app@2x.png 21 | 22 | 23 | 24 | CFBundleIdentifier 25 | com.google.${PRODUCT_NAME} 26 | CFBundleInfoDictionaryVersion 27 | 6.0 28 | CFBundleName 29 | ${PRODUCT_NAME} 30 | CFBundlePackageType 31 | APPL 32 | CFBundleSignature 33 | ???? 34 | CFBundleVersion 35 | 1.0 36 | LSRequiresIPhoneOS 37 | 38 | UILaunchStoryboardName 39 | launch 40 | UIRequiredDeviceCapabilities 41 | 42 | armv7 43 | 44 | UIStatusBarHidden 45 | 46 | UIMainStoryboardFile 47 | Main 48 | 49 | 50 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/Podfile: -------------------------------------------------------------------------------- 1 | target 'VideoWidgetDemo' do 2 | pod 'GVRSDK' 3 | end 4 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/VideoPlayerAppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @class VideoPlayerViewController; 4 | 5 | @interface VideoPlayerAppDelegate : UIResponder 6 | @property(nonatomic, strong) UIWindow *window; 7 | @end 8 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/VideoPlayerAppDelegate.m: -------------------------------------------------------------------------------- 1 | #if !defined(__has_feature) || !__has_feature(objc_arc) 2 | #error "This file requires ARC support. Compile with -fobjc-arc" 3 | #endif 4 | 5 | #import "VideoPlayerAppDelegate.h" 6 | 7 | #import "VideoPlayerViewController.h" 8 | 9 | @implementation VideoPlayerAppDelegate 10 | 11 | - (BOOL)application:(UIApplication *)application 12 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 13 | return YES; 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/VideoPlayerViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface VideoPlayerViewController : UIViewController 4 | @end 5 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/main.m: -------------------------------------------------------------------------------- 1 | #import "VideoPlayerAppDelegate.h" 2 | 3 | int main(int argc, char *argv[]) { 4 | @autoreleasepool { 5 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([VideoPlayerAppDelegate class])); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/resources/congo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/Pods/GVRSDK/copy/VideoWidgetDemo/resources/congo.mp4 -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/GVRAudioEngine.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRAudioEngine.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/GVRCardboardView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRCardboardView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/GVRHeadTransform.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRHeadTransform.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/GVROverlayView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVROverlayView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/GVRPanoramaView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRPanoramaView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/GVRVideoView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRVideoView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/GVRWidgetView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRWidgetView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/vr/gvr/capi/include/gvr.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../GVRSDK/Sources/vr/gvr/capi/include/gvr.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/vr/gvr/capi/include/gvr_audio.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../GVRSDK/Sources/vr/gvr/capi/include/gvr_audio.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Private/GVRSDK/vr/gvr/capi/include/gvr_types.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../GVRSDK/Sources/vr/gvr/capi/include/gvr_types.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/GVRAudioEngine.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRAudioEngine.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/GVRCardboardView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRCardboardView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/GVRHeadTransform.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRHeadTransform.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/GVROverlayView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVROverlayView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/GVRPanoramaView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRPanoramaView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/GVRVideoView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRVideoView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/GVRWidgetView.h: -------------------------------------------------------------------------------- 1 | ../../../GVRSDK/Sources/GVRWidgetView.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/vr/gvr/capi/include/gvr.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../GVRSDK/Sources/vr/gvr/capi/include/gvr.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/vr/gvr/capi/include/gvr_audio.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../GVRSDK/Sources/vr/gvr/capi/include/gvr_audio.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Headers/Public/GVRSDK/vr/gvr/capi/include/gvr_types.h: -------------------------------------------------------------------------------- 1 | ../../../../../../../GVRSDK/Sources/vr/gvr/capi/include/gvr_types.h -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - GVRSDK (0.8.5) 3 | 4 | DEPENDENCIES: 5 | - GVRSDK (~> 0.8.5) 6 | 7 | SPEC CHECKSUMS: 8 | GVRSDK: 69e9f15d4c0aff2f127467b03c570c1fc51fe74d 9 | 10 | PODFILE CHECKSUM: d738700205b71e6c3fb4f54f468a073fdde0a6b1 11 | 12 | COCOAPODS: 1.0.1 13 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Target Support Files/Pods-yg_mediaDemo/Pods-yg_mediaDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## GVRSDK 5 | 6 | Copyright 2016 Google 7 | Generated by CocoaPods - https://cocoapods.org 8 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Target Support Files/Pods-yg_mediaDemo/Pods-yg_mediaDemo-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright 2016 Google 18 | Title 19 | GVRSDK 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | FooterText 25 | Generated by CocoaPods - https://cocoapods.org 26 | Title 27 | 28 | Type 29 | PSGroupSpecifier 30 | 31 | 32 | StringsTable 33 | Acknowledgements 34 | Title 35 | Acknowledgements 36 | 37 | 38 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Target Support Files/Pods-yg_mediaDemo/Pods-yg_mediaDemo-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_yg_mediaDemo : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_yg_mediaDemo 5 | @end 6 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Target Support Files/Pods-yg_mediaDemo/Pods-yg_mediaDemo.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GVRSDK" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/GVRSDK/Libraries" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/GVRSDK" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"CardboardSDK_arm64" -l"CardboardSDK_armv7" -l"CardboardSDK_i386" -l"CardboardSDK_x86_64" -l"c++" -framework "AVFoundation" -framework "AudioToolbox" -framework "CoreGraphics" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreText" -framework "CoreVideo" -framework "GLKit" -framework "MediaPlayer" -framework "OpenGLES" -framework "QuartzCore" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/Pods/Target Support Files/Pods-yg_mediaDemo/Pods-yg_mediaDemo.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/GVRSDK" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/GVRSDK/Libraries" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/GVRSDK" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"CardboardSDK_arm64" -l"CardboardSDK_armv7" -l"CardboardSDK_i386" -l"CardboardSDK_x86_64" -l"c++" -framework "AVFoundation" -framework "AudioToolbox" -framework "CoreGraphics" -framework "CoreMedia" -framework "CoreMotion" -framework "CoreText" -framework "CoreVideo" -framework "GLKit" -framework "MediaPlayer" -framework "OpenGLES" -framework "QuartzCore" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // yg_mediaDemo 4 | // 5 | // Created by silenCetestifY on 16/6/22. 6 | // Copyright © 2016年 yg_self. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/FullViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FullViewController.h 3 | // YG_MediaView 4 | // 5 | // Created by apple on 16/6/06. 6 | // Copyright (c) 2016年 yg_Code. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FullViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/FullViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // FullViewController.m 3 | // YG_MediaView 4 | // 5 | // Created by apple on 16/6/06. 6 | // Copyright (c) 2016年 yg_Code. All rights reserved. 7 | // 8 | 9 | #import "FullViewController.h" 10 | 11 | @interface FullViewController () 12 | 13 | @end 14 | 15 | @implementation FullViewController 16 | 17 | - (instancetype)init 18 | { 19 | if (self = [super init]) { 20 | self.modalTransitionStyle = UIModalTransitionStyleCrossDissolve; 21 | } 22 | return self; 23 | } 24 | 25 | - (UIInterfaceOrientationMask)supportedInterfaceOrientations 26 | { 27 | return UIInterfaceOrientationMaskLandscapeRight; 28 | } 29 | 30 | -(void)dealloc{ 31 | NSLog(@"我怪了"); 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | UIViewControllerBasedStatusBarAppearance 6 | 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSAppTransportSecurity 28 | 29 | NSAllowsArbitraryLoads 30 | 31 | 32 | UILaunchStoryboardName 33 | LaunchScreen 34 | UIMainStoryboardFile 35 | Main 36 | UIRequiredDeviceCapabilities 37 | 38 | armv7 39 | 40 | UISupportedInterfaceOrientations 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/VideoPlayView.h: -------------------------------------------------------------------------------- 1 | // 2 | // VideoPlayView.h 3 | // YG_MediaView 4 | // 5 | // Created by apple on 16/6/06. 6 | // Copyright (c) 2016年 yg_Code. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @protocol VideoPlayViewDelegate 13 | 14 | @optional 15 | - (void)videoplayViewSwitchOrientation:(BOOL)isFull; 16 | 17 | @end 18 | 19 | @interface VideoPlayView : UIView 20 | 21 | + (instancetype)videoPlayView; 22 | 23 | @property (weak, nonatomic) id delegate; 24 | 25 | //@property (nonatomic, strong) AVPlayerItem *playerItem; 26 | @property (nonatomic, copy) NSString *path; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // yg_mediaDemo 4 | // 5 | // Created by silenCetestifY on 16/6/22. 6 | // Copyright © 2016年 yg_self. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // yg_mediaDemo 4 | // 5 | // Created by silenCetestifY on 16/6/22. 6 | // Copyright © 2016年 yhb. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | #import "VideoPlayView.h" 11 | #import "FullViewController.h" 12 | 13 | @interface ViewController () 14 | 15 | /** 你需要个PlayerView用来播放 */ 16 | @property (nonatomic,strong) VideoPlayView *playView; 17 | /** 全屏视图 */ 18 | @property (nonatomic,strong) FullViewController *fullVc; 19 | 20 | @end 21 | 22 | @implementation ViewController 23 | 24 | - (void)viewDidLoad { 25 | 26 | [super viewDidLoad]; 27 | 28 | // 创建playView,设置其代理 29 | self.playView = [VideoPlayView videoPlayView]; 30 | self.playView.delegate = self; 31 | self.fullVc = [[FullViewController alloc] init]; 32 | 33 | //传入视频地址 34 | NSString *path = [[NSBundle mainBundle] pathForResource:@"congo.mp4" ofType:nil]; 35 | 36 | self.playView.path = path; 37 | 38 | // 设置frame添加到View上 39 | self.playView.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.width*9/16); 40 | [self.view addSubview:self.playView]; 41 | 42 | } 43 | 44 | 45 | #pragma mark - playView代理,实现全屏 46 | -(void)videoplayViewSwitchOrientation:(BOOL)isFull 47 | { 48 | 49 | if (isFull) { 50 | [self presentViewController:self.fullVc animated:YES completion:^{ 51 | self.playView.frame = self.fullVc.view.bounds; 52 | [self.fullVc.view addSubview:self.playView]; 53 | }]; 54 | } else { 55 | [self.fullVc dismissViewControllerAnimated:YES completion:^{ 56 | [self.view addSubview:self.playView]; 57 | // 这里设置返回时的frame 58 | self.playView.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.width*9/16); 59 | }]; 60 | } 61 | } 62 | 63 | 64 | 65 | @end 66 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/congo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/congo.mp4 -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // yg_mediaDemo 4 | // 5 | // Created by silenCetestifY on 16/6/22. 6 | // Copyright © 2016年 yg_self. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/MaximumTrackImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/MaximumTrackImage@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/MinimumTrackImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/MinimumTrackImage@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/MaximumTrackImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/MaximumTrackImage@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/MinimumTrackImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/MinimumTrackImage@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/bg_media_default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/bg_media_default@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_minimize_btn_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_minimize_btn_hl@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_minimize_btn_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_minimize_btn_hl@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_pause_btn_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_pause_btn_hl@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_pause_btn_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_pause_btn_hl@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_play_btn_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_play_btn_hl@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_play_btn_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/full_play_btn_hl@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/mini_launchFullScreen_btn_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/mini_launchFullScreen_btn_hl@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/mini_launchFullScreen_btn_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/mini_launchFullScreen_btn_hl@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/thumbImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/VRPlayer.bundle/thumbImage@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/bg_media_default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/bg_media_default@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/en.lproj/Root.strings -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/full_minimize_btn_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/full_minimize_btn_hl@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/full_minimize_btn_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/full_minimize_btn_hl@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/full_pause_btn_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/full_pause_btn_hl@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/full_pause_btn_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/full_pause_btn_hl@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/full_play_btn_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/full_play_btn_hl@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/full_play_btn_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/full_play_btn_hl@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/mini_launchFullScreen_btn_hl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/mini_launchFullScreen_btn_hl@2x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/mini_launchFullScreen_btn_hl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/mini_launchFullScreen_btn_hl@3x.png -------------------------------------------------------------------------------- /Demo/yg_mediaDemo/yg_mediaDemo/resource/thumbImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonYHB/VRMediaPlayer-iOS/979bacb05f24d15aab7d9196700a67b3fe55b111/Demo/yg_mediaDemo/yg_mediaDemo/resource/thumbImage@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VRMediaPlayer-iOS 2 | 一款基于谷歌的GVR框架封装的简单VR视频播放器 3 | 4 | 详细介绍请看我的简书[基于谷歌VR框架封装的iOS播放器](http://www.jianshu.com/p/ab2ea67d8ce9) 5 | --------------------------------------------------------------------------------