rajendrarama opened a new issue #1029:
URL: https://github.com/apache/cordova-android/issues/1029


   I have an angular cordova application which has got the html video tag that 
plays on IOS but not on Android. Play button does not show on android.
   
   html tag is as below:
   
   <video width="320" height="240" controls="controls">
   <source src="samplevideolink" type="video/mp4" />
   </video>
   
   config.xml of Cordova is as below:
   
   <content src="index.cordova.html" />
   <plugin name="cordova-plugin-whitelist" spec="1" />
   <access origin="*...." />
   <allow-intent href="...." />
   <allow-intent href="..." />
   <platform name="android">
   <allow-intent href="market:*" />
   <icon src="assets/android/ldpi.png" density="ldpi" />
   <icon src="assets/android/mdpi.png" density="mdpi" />
   <icon src="assets/android/hdpi.png" density="hdpi" />
   <icon src="assets/android/xhdpi.png" density="xhdpi" />
   <icon src="assets/android/xxhdpi.png" density="xxhdpi" />
   <icon src="assets/android/xxxhdpi.png" density="xxxhdpi" />
   </platform>
   <platform name="ios">
   ....
   <preference name="webviewbounce" value="false" />
   <preference name="UIWebViewBounce" value="false" />
   <preference name="DisallowOverscroll" value="true" />
   <preference name="android-minSdkVersion" value="23" />
   <preference name="BackupWebStorage" value="none" />
   
   Not sure if there is a problem withany configuration specific to Android in 
Cordova. Is there any plugin specific to Android Cordova need to be installed
   
   Really appreciate your help.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to