Android audio stream does not work with one Android 2.3

I am working on streaming audio on Android for soundcloud sound using a media player, it works with Android 4.x and higher devices, but it doesn’t work less than 4.0, for example 2.3.3 and 2.2

Any other streaming solution in android?

Sound Cloud Channel URL:

https://api.soundcloud.com/tracks/81302334/stream?client_id=API_KEY_FOR_SOUNDCLOUD

+5
source share
1 answer

The media player in android <4.x only supports HTTP and 4.xn is higher than support for BOTH http and https, so using https with the old API level, think about it using http instead of https.

+3
source

All Articles