Starts or resumes playback

REQUIRE self.sound != null

Property definitions

android $ MediaPlayer :: start
	# Starts or resumes playback
	# REQUIRE `self.sound != null`
	fun start do
		if self.error != null then return
		if not is_prepared then prepare
		nmedia_player.start
	end
lib/android/audio.nit:419,2--425,4