Skip to content Skip to sidebar Skip to footer

It's A Kind Of Magic... Videoview And Displaying Videos On Android 3.1 Vs. 4.1

Hi android programmers, I've been struggling all day long on a problem that seems strange and with no solution. What I seek is some guidance and some previous experiences. For test

Solution 1:

According to your manifest file, your sdk version are not compatible with your other devices. uses-sdk android:minSdkVersion="12" .

<uses-sdkandroid:minSdkVersion="3"android:targetSdkVersion="12" />

Edit your code according to it, good luck!

Solution 2:

To all the people that might end up here. Probably the best solution to this would be to follow this link here:

WebView and HTML5 <video>

Post a Comment for "It's A Kind Of Magic... Videoview And Displaying Videos On Android 3.1 Vs. 4.1"