Video from URL working on Android 4 but not on Android 9

前端 未结 2 1644
栀梦
栀梦 2021-01-25 04:06

This code works on Android 4.4.2 but does not work on the phone with Android 9:

String url=\"http://...LINK...mp4\";
MediaController controller = new MediaContro         


        
2条回答
  •  一向
    一向 (楼主)
    2021-01-25 04:21

    You can use the one line code in the manifest file. Its working for me.

     
            
        
    

    Inside application tag we can use android:usesCleartextTraffic="true" which can resolve this issue.

提交回复
热议问题