i have searching for the soultion to play a HTTPS video in android. i have come to know that https does not support for before 3.1 from android media support doc. so i have tested it in the android 4.0.3 emulator. still i am getting the same error (Media player error (-1,243234242)).
But i have tested same video with HTTP. its working fine to me.
videoview.setContentURI(Uri.parse("https://url_that_i_am_using");
Any idea to play https video streaming in video view or any permission do i need to specify in my manifest/serverside/video encoding?
Thanks in advance.