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. -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/angular/ee9b0ea5-a9f6-4921-9f87-4402f844beeco%40googlegroups.com.