Sets an explicit MIME data type to be handled by the intent, for example

the return data type Automatically clears the data type field set using data= method

Property definitions

android $ Intent :: mime_type=
	# Sets an explicit MIME data type to be handled by the intent, for example
	# the return data type
	# Automatically clears the data type field set using `data=` method
	fun mime_type=(mime_type: String)
	do
		sys.jni_env.push_local_frame(1)
		intent.mime_type = mime_type.to_java_string
		sys.jni_env.pop_local_frame
	end
lib/android/intent/intent_api10.nit:698,2--706,4