Retrieves the Array[String] extra stored as Java CharSequence[]

with the corresponding name

Property definitions

android $ Intent :: extra_char_sequence_array
	# Retrieves the `Array[String]` extra stored as Java `CharSequence[]`
	# with the corresponding name
	fun extra_char_sequence_array(name: String): Array[String]
	do
		sys.jni_env.push_local_frame(1)
		var string_array = intent.char_sequence_array_list_extra(name.to_java_string)
		sys.jni_env.pop_local_frame
		return string_array
	end
lib/android/intent/intent_api10.nit:858,2--866,4