Sets the stream of the app to STREAM_MUSIC.

STREAM_MUSIC is the default stream used by android apps.

Property definitions

android :: audio $ App :: manage_audio_stream
	# Sets the stream of the app to STREAM_MUSIC.
	# STREAM_MUSIC is the default stream used by android apps.
	private fun manage_audio_stream(native_activity: NativeActivity) in "Java" `{
		native_activity.setVolumeControlStream(AudioManager.STREAM_MUSIC);
	`}
lib/android/audio.nit:687,2--691,3