videostream / cordova-chromecast

Chromecast running in Cordova
117 stars 58 forks source link

Simplified setup #37

Closed pkaul closed 9 years ago

pkaul commented 9 years ago

Moved plugin hook code for "Google PlayServices" (+Mediarouter) integration to a dedicated Cordova plugin at https://github.com/pkaul/googleplayservices-cordova-plugin.

Integrate the new plugin by adding cordova plugin add https://github.com/pkaul/googleplayservices-cordova-plugin.git to the concrete Chromecast project

This has the following advantages

matbee-eth commented 9 years ago

Thanks for adding it to the README! :)

matbee-eth commented 9 years ago

Any idea if this caused: https://github.com/GetVideostream/cordova-chromecast/issues/39 ?

pkaul commented 9 years ago

This has probably to do with the wrong oder of plugin addition. Instead of

Step 1: cordova plugin add https://github.com/GetVideostream/cordova-chromecast.git Step 2: cordova plugin add https://github.com/pkaul/googleplayservices-cordova-plugin.git

I would try to

Step 1: cordova plugin add https://github.com/pkaul/googleplayservices-cordova-plugin.git Step 2: cordova plugin add https://github.com/GetVideostream/cordova-chromecast.git

Another idea: Maybe "PlayServices" isn't available in the local Android SDK. I will add a check to googleplayservices-cordova-plugin ...