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-sdk
android: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:
Post a Comment for "It's A Kind Of Magic... VideoView And Displaying Videos On Android 3.1 Vs. 4.1"