我正在尝试运行 phoneRTC 演示,我构建了 android 演示应用程序并运行了一个信令服务器,但是当我在 android 上运行客户端应用程序时,我得到的只是一个空白屏幕。
这些是我采取的步骤:
npm install -g cordova bower grunt-cli
git clone https://github.com/alongubkin/phonertc.git
ionic create phonertc-ionic
cp -R phonertc\demo\client\* phonertc-ionic\
cd phonertc-ionic
npm install
bower install
cordova plugin add org.apache.cordova.device
cordova plugin add org.apache.cordova.console
cordova plugin add https://github.com/alongubkin/phonertc.git
cordova platform add android
cd ../phonertc/demo/server
npm install
node index.js
将 phonertc-ionic/app/scripts/signaling.js 中的服务器详细信息更改为:
var socket = io.connect('http://my_server_ip:3000/');
并在 phonertc-ionic 中运行以下命令:
grunt build --force
cp -R app/* www/
cordova build android
我的信令服务器正在运行,但是当我尝试通过浏览器访问端口时,我收到以下消息:
Error: ENOENT, stat '/home/server/index.html'
当我在手机上运行该应用程序时,我只是得到一个空白屏幕。
难道我做错了什么?