In Ionic Framework App playing youtube video in browser but not in android device

In a simple Ionic app I have to play a youtube video. It works fine in browser but not run on actual android device. I referred to the code from http://plnkr.co/edit/XmyAhE?p=preview

I use the following code in my ionic app,

<ion-view view-title="{{navTitle}}">
    <ion-content has-header="true" padding="true">
        <div class="list card">
            <div class="item item-divider">
                <i class="ion-videocamera"></i>
                Video
            </div>
            <div class="padding">
                <object width="100%" height="150">
                    <param name="movie" value="https://www.youtube.com/v/WzhW20hLp6M?version=3&amp;hl=uk_UA&amp;rel=0"></param>
                    <param name="allowFullScreen" value="true"></param
                    <param name="allowscriptaccess" value="always"></param>
                    <embed src="https://www.youtube.com/v/WzhW20hLp6M?version=3&amp;hl=uk_UA&amp;rel=0" type="application/x-shockwave-flash" width="100%" height="150" allowscriptaccess="always" allowfullscreen="true"></embed>
                </object>
            </div>
        </div>  
    </ion-content>
</ion-view>

Here is browser output screen :

enter image description here

And output Screen In Android Device :

enter image description here

Please help me.

Consider using an iframe in place of <object></object. Here are the instructions on how to get the iframe from a youtube video. The upside of using the iframe method is if the browser supports html5, it will use html5 to play the video. It also supports various other methods of playback if the web browser supports it. Here is some further reading on youtube video playback.

I have solved my problem using add plugin in my application

  cordova plugin add https://github.com/apache/cordova-plugin-whitelist.git