Retrieves the Int extra stored as Java byte with the corresponding name

Property definitions

android $ Intent :: extra_byte
	# Retrieves the `Int` extra stored as Java `byte` with the corresponding name
	fun extra_byte(name: String, def_value: Int): Int
	do
		sys.jni_env.push_local_frame(1)
		var nit_int = intent.byte_extra(name.to_java_string, def_value)
		sys.jni_env.pop_local_frame
		return nit_int
	end
lib/android/intent/intent_api10.nit:806,2--813,4