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-sdk
        android:minSdkVersion="3"
        android:targetSdkVersion="12" />

Edit your code according to it, good luck!


Solution 2:


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