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

前端 未结 2 1643
栀梦
栀梦 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:18

    Android 9.0 blocks cleartext (http) traffic by default.

    The preferred solution is to not use http URLs, but instead use https.

    You can, through network security configuration, tell Android to allow cleartext traffic for your app, but this is less secure.

提交回复
热议问题