如何在Phonegap构建中安装chromecast? 我没有找到任何关于phonegap build的文档。
答案 0 :(得分:1)
我也没有看到任何有关您关注的文件。但是,我发现这个related SO post推荐了一些可用于你的phonegap项目的插件。
有一些可用的插件,试试吧
https://github.com/GetVideostream/cordova-chromecast // Android
https://github.com/AVGP/cordova-chromecast // Android
https://github.com/SesamTV/ChromecastCordova // Android
https://github.com/rbackhouse/chromecast_cordova_plugin // Android
您还可以查看支持Chromecast的ConnectSDK插件。
答案 1 :(得分:1)
我已查看与documentation
构建和插件相关的phonegap
。
https://github.com/SesamTV/ChromecastCordova
如果您setup
libs and tools
<?php
if(isset($_REQUEST['Submit'])){
$xml = new DOMDocument("1.0","UTF-8");
$rootTag = $xml->getElementsByTagName("document")->item(0);
$feed = $xml->createElement("feed");
$asset = $xml->createElement("asset");
$video = $xml->createElement("video");
$aTag = $xml -> createElement("FileName",$_REQUEST['FileName']);
$bTag = $xml -> createElement("Network",$_REQUEST['Network']);
$feed->appendChild($asset);
$asset->appendChild($bTag);
$feed->appendChild($video);
$video->appendChild($aTag);
$rootTag = $xml->appendChild($feed);
$xml->save("a.xml");
header("Content-type: text/xml");
header('Content-Disposition: attachment; filename="a.xml"');
exit;
}
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>XML </title>
</head>
<body>
<form id="form1" method="post" action="index.php"> <table width="357" border="0">
<tr> <td width="90">FileName:</td> <td width="257"><input name="FileName" type="text" id="FileName" size=30 /></td> </tr>
<tr> <td>Network:</td> <td><label> <input name="Network" type="text" id="Network" size=30 /> </label></td> </tr>
<tr> <td height="41" colspan="2"><label></label>
<div align="center"> <input type="submit" name="Submit" value="Descargar">
<label> <input type="reset" name="Submit2" value="Cancelar" /> </label> </div></td> </tr> </table> </form>
</body>
</html>
,则上述链接会对您有所帮助。似乎上面文档中的设置链接没有长期工作。使用以下链接进行与库和工具相关的设置。
https://developers.google.com/cast/docs/android_sender_setup
如果您附加任何构建日志,也会有所帮助。